diff --git a/src/AIS/AIS_InteractiveContext.cxx b/src/AIS/AIS_InteractiveContext.cxx index fad207adec..cb2e52e352 100644 --- a/src/AIS/AIS_InteractiveContext.cxx +++ b/src/AIS/AIS_InteractiveContext.cxx @@ -2742,7 +2742,10 @@ AIS_StatusOfPick AIS_InteractiveContext::SelectPoint(const Graphic3d_Vec2i& t AIS_StatusOfPick AIS_InteractiveContext::SelectDetected(const AIS_SelectionScheme theSelScheme) { - if (theSelScheme == AIS_SelectionScheme_Replace && !myLastPicked.IsNull()) + // For all selection schemes, allowing to select an object, + // HandleMouseClick is available + if (theSelScheme != AIS_SelectionScheme_Remove && theSelScheme != AIS_SelectionScheme_Clear + && !myLastPicked.IsNull()) { Graphic3d_Vec2i aMousePos(-1, -1); gp_Pnt2d aMouseRealPos = MainSelector()->GetManager().GetMousePosition(); diff --git a/src/AIS/AIS_InteractiveContext.hxx b/src/AIS/AIS_InteractiveContext.hxx index 63410dbbd8..ee4e231af5 100644 --- a/src/AIS/AIS_InteractiveContext.hxx +++ b/src/AIS/AIS_InteractiveContext.hxx @@ -565,6 +565,8 @@ public: //! @name Selection management //! (Prs3d_TypeOfHighlight_Selected and Prs3d_TypeOfHighlight_LocalSelected) //! @sa PrsMgr_PresentableObject::HilightAttributes() defining per-object highlight style of //! selected owners (overrides defaults) + //! For all selection schemes, allowing to select an object, + //! HandleMouseClick is available Standard_EXPORT AIS_StatusOfPick SelectDetected(const AIS_SelectionScheme theSelScheme = AIS_SelectionScheme_Replace); diff --git a/src/SelectMgr/SelectMgr_EntityOwner.hxx b/src/SelectMgr/SelectMgr_EntityOwner.hxx index a18174472c..dfd94e757e 100644 --- a/src/SelectMgr/SelectMgr_EntityOwner.hxx +++ b/src/SelectMgr/SelectMgr_EntityOwner.hxx @@ -75,6 +75,8 @@ public: //! @param theModifiers key modifiers //! @param theIsDoubleClick flag indicating double mouse click //! @return TRUE if object handled click + //! For all selection schemes, allowing to select an object, + //! it's available virtual Standard_Boolean HandleMouseClick(const Graphic3d_Vec2i& thePoint, Aspect_VKeyMouse theButton, Aspect_VKeyFlags theModifiers,