diff options
| author | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-03-04 19:10:40 +0200 | 
|---|---|---|
| committer | AlexanderP ProductEngine <apaschenko@productengine.com> | 2013-03-04 19:10:40 +0200 | 
| commit | 19033255ee2952bd5ee1ebf6114b518548106f34 (patch) | |
| tree | 0f3c3495812f863c3da8ce7d57bef0456f90bd34 | |
| parent | 0acc373a352093fdc1cf370f01b1fa388dd8e014 (diff) | |
CHUI-821 FIXED Conversation size regression when logging out with conversation list minimized to icons : save current conv. panel's width
| -rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 16 | 
1 files changed, 12 insertions, 4 deletions
| diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index 46ec1d510d..8d630b9d50 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -764,6 +764,14 @@ void LLFloaterIMContainer::assignResizeLimits()  	S32 msg_pane_min_width  = is_msg_pane_expanded ? mMessagesPane->getExpandedMinDim() : 0;  	S32 new_min_width = conv_pane_current_width + msg_pane_min_width + summary_width_of_visible_borders; +    if (is_conv_pane_expanded) +    { +    	// Save the conversations pane width. +	    gSavedPerAccountSettings.setS32( +	            "ConversationsListPaneWidth", +                mConversationsPane->getRect().getWidth()); +    } +  	setResizeLimits(new_min_width, getMinHeight());  } @@ -1947,10 +1955,10 @@ void LLFloaterIMContainer::closeFloater(bool app_quitting/* = false*/)  	// Most of the time the user will never see this state.  	setMinimized(FALSE); -	S32 conv_pane_width = mConversationsPane->getRect().getWidth(); - -	// Save the conversations pane width before collapsing it. -	gSavedPerAccountSettings.setS32("ConversationsListPaneWidth", conv_pane_width); +	// Save the conversations pane width. +	gSavedPerAccountSettings.setS32( +			"ConversationsListPaneWidth", +			mConversationsPane->getRect().getWidth());  	LLFloater::closeFloater(app_quitting);  } | 
