From: ouv Date: Wed, 19 Mar 2008 10:13:15 +0000 (+0000) Subject: Bug IPAL19253 - Qt4 porting: Gauss Viewer. ?Selection Mode? functionality doesn?t... X-Git-Tag: V5_0_0a1~18 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=5f438e76a1c94fc5a406b76eb9297648520b4f87;p=modules%2Fgui.git Bug IPAL19253 - Qt4 porting: Gauss Viewer. ?Selection Mode? functionality doesn?t work in the second window. --- diff --git a/src/SUIT/SUIT_SelectionMgr.cxx b/src/SUIT/SUIT_SelectionMgr.cxx index 21d02eadc..a3f8a8e81 100755 --- a/src/SUIT/SUIT_SelectionMgr.cxx +++ b/src/SUIT/SUIT_SelectionMgr.cxx @@ -148,7 +148,8 @@ void SUIT_SelectionMgr::selectionChanged( SUIT_Selector* sel ) { for ( SelectorList::iterator it = mySelectors.begin(); it != mySelectors.end(); ++it ) { - if ( *it != sel ) + // Temporary action(to avoid selection of the objects which don't pass the filters): + //if ( *it != sel ) (*it)->setSelected( newOwners ); } }