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

0031400: Application Framework, TPrsStd_AISPresentation - Ocaf selection mechanism doesn't allow multiple selection

TPrsStd_AISPresentation::ActivateSelectionMode() uses Multiple enumeration for definition of the selection mode instead of GlobalOrLocal.
This commit is contained in:
vro 2020-02-28 15:37:44 +03:00 committed by bugmaster
parent 3d60d73f76
commit ae87bb87d0

View File

@ -1052,7 +1052,7 @@ void TPrsStd_AISPresentation::ActivateSelectionMode()
}
}
if (!isActivated)
aContext->Activate(myAIS, aSelectionMode, Standard_False);
aContext->SetSelectionModeActive(myAIS, aSelectionMode, Standard_True, AIS_SelectionModesConcurrency_Multiple);
}
}
else
@ -1061,7 +1061,7 @@ void TPrsStd_AISPresentation::ActivateSelectionMode()
{
const Standard_Integer aSelectionMode = SelectionMode (iSelMode);
aContext->SetSelectionModeActive (myAIS, aSelectionMode, Standard_True/*activate*/,
iSelMode == 1 ? AIS_SelectionModesConcurrency_Single : AIS_SelectionModesConcurrency_GlobalOrLocal);
iSelMode == 1 ? AIS_SelectionModesConcurrency_Single : AIS_SelectionModesConcurrency_Multiple);
}
}
}