From: nds Date: Wed, 20 May 2015 09:03:58 +0000 (+0300) Subject: A fix for a bug: edit sketch - points are not selectable. X-Git-Tag: V_1.2.0~139 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=cf8528e6162956fde558c557c29699981fdee06b;p=modules%2Fshaper.git A fix for a bug: edit sketch - points are not selectable. --- 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)