From a3d4053c158a7fc1300fa1a8d0a4e94bc43ca07d Mon Sep 17 00:00:00 2001 From: vpa Date: Mon, 31 Oct 2016 16:34:15 +0300 Subject: [PATCH] 0027868: Visualization - AIS_InteractiveContext::Remove() might keep removed object in selection list - AIS_InteractiveContext::unhighlightOwners is corrected to handle all objects in selection regardless of owner's selection state --- src/AIS/AIS_InteractiveContext.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index 75c2c9cce3..99e6efbb2c 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -2320,8 +2320,7 @@ void AIS_InteractiveContext::unhighlightOwners (const Handle(AIS_InteractiveObje SelectMgr_SequenceOfOwner aSeq; for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next()) { - if (aSelIter.Value()->IsSameSelectable (theObject) - && aSelIter.Value()->IsSelected()) + if (aSelIter.Value()->IsSameSelectable (theObject)) { aSeq.Append (aSelIter.Value()); }