1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

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
This commit is contained in:
vpa 2016-10-31 16:34:15 +03:00 committed by apn
parent 10c5aa00b0
commit a3d4053c15

View File

@ -2320,8 +2320,7 @@ void AIS_InteractiveContext::unhighlightOwners (const Handle(AIS_InteractiveObje
SelectMgr_SequenceOfOwner aSeq; SelectMgr_SequenceOfOwner aSeq;
for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next()) for (AIS_NListOfEntityOwner::Iterator aSelIter (mySelection->Objects()); aSelIter.More(); aSelIter.Next())
{ {
if (aSelIter.Value()->IsSameSelectable (theObject) if (aSelIter.Value()->IsSameSelectable (theObject))
&& aSelIter.Value()->IsSelected())
{ {
aSeq.Append (aSelIter.Value()); aSeq.Append (aSelIter.Value());
} }