diff options
| -rw-r--r-- | indra/newview/llfloaterimcontainer.h | 3 | ||||
| -rw-r--r-- | indra/newview/llfloaterimsessiontab.cpp | 5 | 
2 files changed, 7 insertions, 1 deletions
diff --git a/indra/newview/llfloaterimcontainer.h b/indra/newview/llfloaterimcontainer.h index 09a24c0105..8daed46c7d 100644 --- a/indra/newview/llfloaterimcontainer.h +++ b/indra/newview/llfloaterimcontainer.h @@ -106,6 +106,8 @@ public:      bool enableContextMenuItem(const std::string& item, uuid_vec_t& selectedIDS);      void doToParticipants(const std::string& item, uuid_vec_t& selectedIDS); +	void assignResizeLimits(); +  private:  	typedef std::map<LLUUID,LLFloater*> avatarID_panel_map_t;  	avatarID_panel_map_t mSessions; @@ -154,7 +156,6 @@ private:  	void toggleAllowTextChat(const LLUUID& participant_uuid);  	void toggleMute(const LLUUID& participant_id, U32 flags);  	void openNearbyChat(); -	void assignResizeLimits();  	LLButton* mExpandCollapseBtn;  	LLButton* mStubCollapseBtn; diff --git a/indra/newview/llfloaterimsessiontab.cpp b/indra/newview/llfloaterimsessiontab.cpp index f5b657fa60..4e79bd0ac8 100644 --- a/indra/newview/llfloaterimsessiontab.cpp +++ b/indra/newview/llfloaterimsessiontab.cpp @@ -751,6 +751,11 @@ void LLFloaterIMSessionTab::onTearOffClicked()  	{  		forceReshape();  	} +	LLFloaterIMContainer* container = LLFloaterIMContainer::getInstance(); +	if (container) +	{ +		container->assignResizeLimits(); +	}  	refreshConversation();  	updateGearBtn();  }  | 
