From: azv Date: Thu, 25 May 2017 05:21:12 +0000 (+0300) Subject: Issue #2179: Mirror in the sketcher : no refresh after the displacement of circles X-Git-Tag: V_2.7.1.1~22 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=af3c8bbe5973903135deae7126f4d73e8fa62656;p=modules%2Fshaper.git Issue #2179: Mirror in the sketcher : no refresh after the displacement of circles Notify observers about moving the feature each time without respect to another constraints --- diff --git a/src/SketchSolver/SketchSolver_Group.cpp b/src/SketchSolver/SketchSolver_Group.cpp index a0a7d3624..ce740539a 100644 --- a/src/SketchSolver/SketchSolver_Group.cpp +++ b/src/SketchSolver/SketchSolver_Group.cpp @@ -137,9 +137,10 @@ bool SketchSolver_Group::moveFeature(FeaturePtr theFeature) mySketchSolver->initialize(); aConstraint->moveFeature(); - } else - myStorage->notify(theFeature); + } + // notify all observers that theFeature has been changed + myStorage->notify(theFeature); return true; }