From cd30e0413485d52a1acd88a8b74b46fc53080962 Mon Sep 17 00:00:00 2001 From: ruevs Date: Sun, 10 May 2020 14:41:16 +0300 Subject: [PATCH] Expand "edit newly added dimensions" to edit "Length Ratio" and "Length Difference" --- src/constraint.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/constraint.cpp b/src/constraint.cpp index fb5c74c..3f861b8 100644 --- a/src/constraint.cpp +++ b/src/constraint.cpp @@ -763,7 +763,9 @@ void Constraint::MenuConstrain(Command id) { } } - if ((id == Command::DISTANCE_DIA || id == Command::ANGLE) && SS.immediatelyEditDimension) { + if((id == Command::DISTANCE_DIA || id == Command::ANGLE || + id == Command::RATIO || id == Command::DIFFERENCE) && + SS.immediatelyEditDimension) { SS.GW.EditConstraint(c.h); }