1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0027612: Visualization, AIS_InteractiveContext - handle SelectMgr_EntityOwner::IsForcedHilight() flag in neutral point

- the check for IsForcedHilight was added to interactive context
This commit is contained in:
vpa 2016-06-16 16:30:11 +03:00 committed by bugmaster
parent 7ccf8676cf
commit 29627b4cdb

View File

@ -216,9 +216,14 @@ AIS_StatusOfDetection AIS_InteractiveContext::MoveTo (const Standard_Integer th
if (aNewDetected >= 1) if (aNewDetected >= 1)
{ {
// does nothing if previously detected object is equal to the current one // Does nothing if previously detected object is equal to the current one.
// However in advanced selection modes the owners comparison
// is not effective because in that case only one owner manage the
// selection in current selection mode. It is necessary to check the current detected
// entity and hilight it only if the detected entity is not the same as
// previous detected (IsForcedHilight call)
Handle(SelectMgr_EntityOwner) aNewPickedOwner = myMainSel->Picked (aNewDetected); Handle(SelectMgr_EntityOwner) aNewPickedOwner = myMainSel->Picked (aNewDetected);
if (aNewPickedOwner == myLastPicked) if (aNewPickedOwner == myLastPicked && !aNewPickedOwner->IsForcedHilight())
{ {
return myLastPicked->IsSelected() return myLastPicked->IsSelected()
? AIS_SOD_Selected ? AIS_SOD_Selected