diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfloaterimcontainer.cpp | 9 | ||||
| -rw-r--r-- | indra/newview/llfloaterimsessiontab.cpp | 5 | 
2 files changed, 11 insertions, 3 deletions
| diff --git a/indra/newview/llfloaterimcontainer.cpp b/indra/newview/llfloaterimcontainer.cpp index 5a284cc7b7..27e579a68c 100644 --- a/indra/newview/llfloaterimcontainer.cpp +++ b/indra/newview/llfloaterimcontainer.cpp @@ -273,14 +273,19 @@ void LLFloaterIMContainer::addFloater(LLFloater* floaterp,  		openFloater(floaterp->getKey());  		return;  	} + +	LLUUID session_id = floaterp->getKey();  	// Make sure the message panel is open when adding a floater or it stays mysteriously hidden -	collapseMessagesPane(false); +	if (session_id != LLUUID()) +	{ +		collapseMessagesPane(false); +	}  	// Add the floater  	LLMultiFloater::addFloater(floaterp, select_added_floater, insertion_point); -	LLUUID session_id = floaterp->getKey(); +  	LLIconCtrl* icon = 0; diff --git a/indra/newview/llfloaterimsessiontab.cpp b/indra/newview/llfloaterimsessiontab.cpp index 6dbcdb4474..526eeef869 100644 --- a/indra/newview/llfloaterimsessiontab.cpp +++ b/indra/newview/llfloaterimsessiontab.cpp @@ -769,7 +769,10 @@ void LLFloaterIMSessionTab::onOpen(const LLSD& key)  	{  		LLFloaterIMContainer* host_floater = dynamic_cast<LLFloaterIMContainer*>(getHost());  		// Show the messages pane when opening a floater hosted in the Conversations -		host_floater->collapseMessagesPane(false); +		if (!isNearbyChat()) +		{ +			host_floater->collapseMessagesPane(false); +		}  	}  } | 
