diff options
author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-01-04 23:54:38 +0200 |
---|---|---|
committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-01-04 23:54:38 +0200 |
commit | 118201943da157b6932d8c79ab3eb3d8c3c0a9a4 (patch) | |
tree | 1c7db2071959da87645a81853be5ab5597e7c7a8 /indra/llui | |
parent | b1ba208e7fcb8dbaa2c47b70fe580094982e36dd (diff) |
CHUI-643 FIXED Collapsed conversations floater has huge right padding: prevent of a rewriting mOriginMinWidth and mOriginMinHeight to default values
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llmultifloater.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/indra/llui/llmultifloater.cpp b/indra/llui/llmultifloater.cpp index 179b251cdb..59faabd482 100644 --- a/indra/llui/llmultifloater.cpp +++ b/indra/llui/llmultifloater.cpp @@ -37,12 +37,10 @@ // LLMultiFloater::LLMultiFloater(const LLSD& key, const LLFloater::Params& params) - : LLFloater(key), - mTabContainer(NULL), - mTabPos(LLTabContainer::TOP), - mAutoResize(TRUE), - mOrigMinWidth(params.min_width), - mOrigMinHeight(params.min_height) + : LLFloater(key) + , mTabContainer(NULL) + , mTabPos(LLTabContainer::TOP) + , mAutoResize(TRUE) { } |