From cf8528e6162956fde558c557c29699981fdee06b Mon Sep 17 00:00:00 2001 From: nds Date: Wed, 20 May 2015 12:03:58 +0300 Subject: [PATCH] A fix for a bug: edit sketch - points are not selectable. --- src/PartSet/PartSet_SketcherMgr.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/PartSet/PartSet_SketcherMgr.cpp b/src/PartSet/PartSet_SketcherMgr.cpp index 7b942563a..f3d5bfa32 100644 --- a/src/PartSet/PartSet_SketcherMgr.cpp +++ b/src/PartSet/PartSet_SketcherMgr.cpp @@ -708,6 +708,9 @@ void PartSet_SketcherMgr::startSketch(ModuleBase_Operation* theOperation) myPlaneFilter->setPlane(aPln->impl()); } aDisplayer->updateViewer(); + // all sketch objects should be activated in the sketch selection modes by edit operation start + if (theOperation->isEditOperation()) + activateObjectsInSketchMode(true); } void PartSet_SketcherMgr::stopSketch(ModuleBase_Operation* theOperation) -- 2.39.2