summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorSeth ProductEngine <slitovchuk@productengine.com>2012-07-11 17:19:22 +0300
committerSeth ProductEngine <slitovchuk@productengine.com>2012-07-11 17:19:22 +0300
commitaafbf0d21301ccaf2e447a556d08e6686f519d4d (patch)
tree8f0922a665c8337f6e702897253ab5a1476e020b /indra/newview
parent5db5e86f4192b570b53ed4dfe8187701b47d3142 (diff)
CHUI-203 FIXED Conversations floater resizing when it is opened with FUI Chat button.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llimfloatercontainer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llimfloatercontainer.cpp b/indra/newview/llimfloatercontainer.cpp
index e9144a4969..f54b3672e5 100644
--- a/indra/newview/llimfloatercontainer.cpp
+++ b/indra/newview/llimfloatercontainer.cpp
@@ -393,7 +393,9 @@ void LLIMFloaterContainer::updateState(bool collapse, S32 delta_width)
{
LLRect floater_rect = getRect();
floater_rect.mRight += ((collapse ? -1 : 1) * delta_width);
- setShape(floater_rect);
+
+ // Set by_user = true so that reshaped rect is saved in user_settings.
+ setShape(floater_rect, true);
updateResizeLimits();