diff --git a/src/Mod/Sketcher/App/PropertyConstraintList.cpp b/src/Mod/Sketcher/App/PropertyConstraintList.cpp index 91e1f0e350..f886b33e8a 100644 --- a/src/Mod/Sketcher/App/PropertyConstraintList.cpp +++ b/src/Mod/Sketcher/App/PropertyConstraintList.cpp @@ -183,9 +183,8 @@ void PropertyConstraintList::setValues(const std::vector& lValue) auto copy = lValue; for(auto &cstr : copy) cstr = cstr->clone(); - aboutToSetValue(); - applyValues(std::move(copy)); - hasSetValue(); + + setValues(std::move(copy)); } void PropertyConstraintList::setValues(std::vector&& lValue) {