diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index ef088df226..2c58be9fa7 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -2333,9 +2333,16 @@ void AIS_InteractiveContext::EraseGlobal (const Handle(AIS_InteractiveObject)& t for (TColStd_ListIteratorOfListOfInteger aDispModeIter (aStatus->DisplayedModes()); aDispModeIter.More(); aDispModeIter.Next()) { - if (myMainPM->IsHighlighted (theIObj, aDispModeIter.Value())) + if (aStatus->IsHilighted()) { - myMainPM->Unhighlight (theIObj, aDispModeIter.Value()); + if (IsCurrent (theIObj)) + { + AddOrRemoveCurrentObject (theIObj, Standard_False); + } + else if (myMainPM->IsHighlighted (theIObj, aDispModeIter.Value())) + { + myMainPM->Unhighlight (theIObj, aDispModeIter.Value()); + } } myMainPM->SetVisibility (theIObj, aDispModeIter.Value(), Standard_False);