From 3b23f4bbd15801cf53807cfea79fffe1591ea60c Mon Sep 17 00:00:00 2001 From: Thomas Galland Date: Thu, 21 Nov 2024 13:06:06 +0100 Subject: [PATCH] [Keep?] restore condition to prenvent uncecessarily triggering selection --- src/SUIT/SUIT_SelectionMgr.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SUIT/SUIT_SelectionMgr.cxx b/src/SUIT/SUIT_SelectionMgr.cxx index 3e68c4221..7c80b6d10 100644 --- a/src/SUIT/SUIT_SelectionMgr.cxx +++ b/src/SUIT/SUIT_SelectionMgr.cxx @@ -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 ); } } -- 2.39.2