1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

Fix for issue #0028365: Visualization, AIS_InteractiveContext - apply selection filter in AddOrRemoveSelected at Neutral point

This commit is contained in:
nds 2017-01-19 15:17:41 +03:00
parent d486ae29c5
commit 9d84c361f5

View File

@ -1202,7 +1202,10 @@ void AIS_InteractiveContext::AddOrRemoveSelected (const Handle(SelectMgr_EntityO
if (HasOpenedContext())
return myLocalContexts(myCurLocalIndex)->AddOrRemoveSelected (theOwner, theToUpdateViewer);
if (theOwner.IsNull() || !theOwner->HasSelectable() || !myFilters->IsOk(theOwner))
if (theOwner.IsNull() || !theOwner->HasSelectable())
return;
if (!myFilters->IsOk(theOwner) && !theOwner->IsSelected())
return;
AIS_SelectStatus aSelStat = mySelection->Select (theOwner);