diff options
author | Leslie Linden <none@none> | 2011-05-25 10:39:34 -0700 |
---|---|---|
committer | Leslie Linden <none@none> | 2011-05-25 10:39:34 -0700 |
commit | 33e4a2c7b1ab3a06f1adb5edd9850523c897ea77 (patch) | |
tree | 3aefe803f9a40519442e068be8b17776e509673b /indra/llui/lllayoutstack.h | |
parent | 610b15aee47c5fae9df45b2d5ae515fd06b5a536 (diff) |
Updated Marketplace Inbox & Outbox panel to maintain size when one is expanded vs the other
Diffstat (limited to 'indra/llui/lllayoutstack.h')
-rw-r--r-- | indra/llui/lllayoutstack.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llui/lllayoutstack.h b/indra/llui/lllayoutstack.h index 4ac8ef0ee9..2fc2cf3eb4 100644 --- a/indra/llui/lllayoutstack.h +++ b/indra/llui/lllayoutstack.h @@ -177,6 +177,10 @@ public: ~LLLayoutPanel(); void initFromParams(const Params& p); + + S32 getMinDim() const { return mMinDim; } + S32 getMaxDim() const { return mMaxDim; } + void setMinDim(S32 value) { mMinDim = value; } void setMaxDim(S32 value) { mMaxDim = value; } |