diff options
author | Richard Linden <none@none> | 2012-01-19 19:52:49 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-01-19 19:52:49 -0800 |
commit | 29ad432c8bdc3a69c7241de28e217d27b71947d6 (patch) | |
tree | 356b51bb2533c025ce1160e87151a36464af190e /indra/llui/lllayoutstack.h | |
parent | 9de0b5ed4891dcfcb54e35d9bb0401309455d66a (diff) |
made layoutPanels have constant user_resize and auto_resize attributes
Diffstat (limited to 'indra/llui/lllayoutstack.h')
-rw-r--r-- | indra/llui/lllayoutstack.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/llui/lllayoutstack.h b/indra/llui/lllayoutstack.h index da63593f7f..efe93f6def 100644 --- a/indra/llui/lllayoutstack.h +++ b/indra/llui/lllayoutstack.h @@ -88,9 +88,6 @@ public: void collapsePanel(LLPanel* panel, BOOL collapsed = TRUE); S32 getNumPanels() { return mPanels.size(); } - void updatePanelAutoResize(const std::string& panel_name, BOOL auto_resize); - void setPanelUserResize(const std::string& panel_name, BOOL user_resize); - void updateLayout(); S32 getPanelSpacing() const { return mPanelSpacing; } @@ -187,10 +184,11 @@ public: protected: LLLayoutPanel(const Params& p); + const bool mAutoResize; + const bool mUserResize; + S32 mExpandedMinDim; S32 mMinDim; - bool mAutoResize; - bool mUserResize; bool mCollapsed; F32 mVisibleAmt; F32 mCollapseAmt; |