diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index c6c7f93d4e..867005e249 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -449,7 +449,7 @@ void AIS_InteractiveContext::Display (const Handle(AIS_InteractiveObject)& theIO return; } - // Erase presentations for all display modes different from aDispMode. + // Mark the presentation modes hidden of interactive object different from aDispMode. // Then make sure aDispMode is displayed and maybe highlighted. // Finally, activate selection mode if not yet activated. TColStd_ListOfInteger aModesToRemove; @@ -463,7 +463,7 @@ void AIS_InteractiveContext::Display (const Handle(AIS_InteractiveObject)& theIO { myMainPM->Unhighlight (theIObj, anOldMode); } - myMainPM->Erase (theIObj, anOldMode); + myMainPM->SetVisibility (theIObj, anOldMode, Standard_False); } }