From c3ec36b69f429f478d1954917df71630046f974d Mon Sep 17 00:00:00 2001 From: isk Date: Thu, 14 May 2015 17:04:15 +0300 Subject: [PATCH] 0026153: Draw Harness, ViewerTest - "verase" does not remove selection highlight for shaded object --- src/AIS/AIS_InteractiveContext.cxx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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);