From: asl Date: Mon, 7 Nov 2005 06:05:12 +0000 (+0000) Subject: PAL9391 - display/erase objects from other module X-Git-Tag: V3_1_0a3~64 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=46152da05396a0e9032b6c51d304548dae0546b2;p=modules%2Fgui.git PAL9391 - display/erase objects from other module --- diff --git a/src/LightApp/LightApp_Module.cxx b/src/LightApp/LightApp_Module.cxx index 6e6c68158..15bfc77af 100644 --- a/src/LightApp/LightApp_Module.cxx +++ b/src/LightApp/LightApp_Module.cxx @@ -247,8 +247,8 @@ QtxPopupMgr* LightApp_Module::popupMgr() QString uniform = "( count( $component ) = 1 ) and ( component != activeModule ) and ( activeModule = '%1' )"; uniform = uniform.arg( name() ); - myPopupMgr->setRule( disp, QString( "( not isVisible ) and " ) + uniform, true ); - myPopupMgr->setRule( erase, QString( "( isVisible ) and " ) + uniform, true ); + myPopupMgr->setRule( disp, /*QString( "( not isVisible ) and " ) + */ uniform, true ); + myPopupMgr->setRule( erase, /*QString( "( isVisible ) and " ) + */ uniform, true ); myPopupMgr->setRule( dispOnly, uniform, true ); } return myPopupMgr;