X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FSketchSolver_ConstraintMulti.cpp;h=58634795baca9d49a923dfb0cf48ebc978b48286;hb=d5b5ce2284869d8b97ce638502c58c810bbeb0c7;hp=dad8f2488eb15aa3f1febda6ed1bebd838cd887f;hpb=2532fb2df83ee1ddd9ff3e8b381d3788eaa15b69;p=modules%2Fshaper.git diff --git a/src/SketchSolver/SketchSolver_ConstraintMulti.cpp b/src/SketchSolver/SketchSolver_ConstraintMulti.cpp index dad8f2488..58634795b 100644 --- a/src/SketchSolver/SketchSolver_ConstraintMulti.cpp +++ b/src/SketchSolver/SketchSolver_ConstraintMulti.cpp @@ -14,7 +14,8 @@ // License along with this library; if not, write to the Free Software // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com // #include @@ -231,10 +232,21 @@ void SketchSolver_ConstraintMulti::notify(const FeaturePtr& theFeature, myCopiedFeatures.find(theFeature) == myCopiedFeatures.end()) return; // the feature is not used by constraint => nothing to update - // update derivative object - updateLocal(); - myAdjusted = false; - adjustConstraint(); + if (myIsProcessingNotify) + return; // "notify" is already processing + + // do not adjust "multi"-constraint if the number of objects is changed, + // wait until the constraint is updated (issue #2425: changing number of copies by parameter) + if (myNumberOfCopies + 1 == myBaseConstraint->integer(nameNbObjects())->value()) { + myIsProcessingNotify = true; + + // update derivative object + updateLocal(); + myAdjusted = false; + adjustConstraint(); + + myIsProcessingNotify = false; + } } void SketchSolver_ConstraintMulti::blockEvents(bool isBlocked)