From 52cc62eee870cc7c983bde4a2b98465d9eb9b27e Mon Sep 17 00:00:00 2001 From: nds Date: Tue, 11 Jun 2019 14:24:23 +0300 Subject: [PATCH] 0030728: Visualization - using one implementation of highlight/unhighlight in context - compilation correction #correction for compilation --- src/AIS/AIS_InteractiveContext.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index 2ed6ecf834..725507f224 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -1968,7 +1968,9 @@ void AIS_InteractiveContext::EraseGlobal (const Handle(AIS_InteractiveObject)& t } const Standard_Integer aDispMode = theIObj->HasHilightMode() ? theIObj->HilightMode() : 0; - unhighlightOwners (theIObj); + AIS_NListOfEntityOwner anOwners; + anOwners.Append(theIObj->GlobalSelOwner()); + unhighlightOwners (anOwners); myMainPM->SetVisibility (theIObj, aStatus->DisplayMode(), Standard_False); if (!myLastPicked.IsNull() -- 2.39.5