diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llimpanel.cpp | 9 | 
1 files changed, 6 insertions, 3 deletions
| diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index d1eb94c371..46f3cb6998 100644 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -2177,8 +2177,11 @@ void LLIMFloater::onFocusLost()  	// (hence we are no longer focused)  	if (isDocked())  	{ -		// app not quitting -		closeFloater(false); +		LLIMFloater* floater = LLFloaterReg::getTypedInstance<LLIMFloater>("impanel", mSessionID); +		if (floater) +		{ +			floater->setVisible(false); +		}	  	}  } @@ -2214,7 +2217,7 @@ LLIMFloater* LLIMFloater::show(const LLUUID& session_id)  		 iter != inst_list.end(); ++iter)  	{  		LLIMFloater* floater = dynamic_cast<LLIMFloater*>(*iter); -		if (floater) +		if (floater && floater->isDocked())  		{  			floater->setVisible(false);  		} | 
