From af3c8bbe5973903135deae7126f4d73e8fa62656 Mon Sep 17 00:00:00 2001 From: azv Date: Thu, 25 May 2017 08:21:12 +0300 Subject: [PATCH] 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 --- src/SketchSolver/SketchSolver_Group.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.39.2