]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
[Keep?] restore condition to prenvent uncecessarily triggering selection kw_145_unified_select
authorThomas Galland <thomas.galland@kitware.com>
Thu, 21 Nov 2024 12:06:06 +0000 (13:06 +0100)
committerThomas Galland <thomas.galland@kitware.com>
Fri, 22 Nov 2024 14:15:55 +0000 (15:15 +0100)
src/SUIT/SUIT_SelectionMgr.cxx

index 3e68c422196d377a94dbb81af77538b145aea751..7c80b6d10bee6daba7ce37139b7ec38555dddbaf 100644 (file)
@@ -172,7 +172,7 @@ void SUIT_SelectionMgr::selectionChanged( SUIT_Selector* sel )
     for ( SelectorList::iterator it = mySelectors.begin(); it != mySelectors.end(); ++it )
     {
       // Temporary action(to avoid selection of the objects which don't pass the filters):
-      //if ( *it != sel )
+      if ( *it != sel )
         (*it)->setSelected( newOwners );
     }
   }