diff options
| author | Alexei Arabadji <aarabadji@productengine.com> | 2009-12-21 12:46:11 +0200 | 
|---|---|---|
| committer | Alexei Arabadji <aarabadji@productengine.com> | 2009-12-21 12:46:11 +0200 | 
| commit | 2b873b073c146d820d51b8f59db9ef1ff41b2648 (patch) | |
| tree | c8eae89060fb59c8b8c8549fe0f34e2994467b6a /indra | |
| parent | 05898105c88a2fa175bdc3d353461a6f61ad0616 (diff) | |
fixed EXT-3395 “Docked IM/Chat windows shouldn't hide when voice control panel
is opened”,
made transient floaters visible if clicked any context menu;
--HG--
branch : product-engine
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/lltransientfloatermgr.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/indra/newview/lltransientfloatermgr.cpp b/indra/newview/lltransientfloatermgr.cpp index 7befb87248..347399f239 100644 --- a/indra/newview/lltransientfloatermgr.cpp +++ b/indra/newview/lltransientfloatermgr.cpp @@ -37,6 +37,7 @@  #include "llrootview.h"  #include "llviewerwindow.h"  #include "lldockablefloater.h" +#include "llmenugl.h"  LLTransientFloaterMgr::LLTransientFloaterMgr() @@ -87,6 +88,13 @@ void LLTransientFloaterMgr::leftMouseClickCallback(S32 x, S32 y,  	for (controls_set_t::iterator it = mControlsSet.begin(); it  			!= mControlsSet.end(); it++)  	{ +		// don't hide transient floater if any context menu opened +		if (LLMenuGL::sMenuContainer->getVisibleMenu() != NULL) +		{ +			hide = false; +			break; +		} +  		LLView* control_view = *it;  		if (!control_view->getVisible())  		{ | 
