From dbf44cf425dd415e1feb560da3efd99acee00b7c Mon Sep 17 00:00:00 2001 From: longrackslabs Date: Sun, 21 Sep 2025 13:49:06 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20ConstrainSymmetric=20hint=20for=20point?= =?UTF-8?q?=E2=86=92edge=E2=86=92point=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change 'pick symmetry point' to 'pick point' when the workflow is point → symmetry line → point, since the final selection is a regular point, not a special 'symmetry point'. --- src/Mod/Sketcher/Gui/CommandConstraints.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Sketcher/Gui/CommandConstraints.cpp b/src/Mod/Sketcher/Gui/CommandConstraints.cpp index 38ee925df2..3e58bcf633 100644 --- a/src/Mod/Sketcher/Gui/CommandConstraints.cpp +++ b/src/Mod/Sketcher/Gui/CommandConstraints.cpp @@ -1270,7 +1270,7 @@ public: return {{QObject::tr(PICK_SYMMETRY_LINE_OR_POINT), {Gui::InputHint::UserInput::MouseLeft}}}; } else if (isVertex(selSeq[0].GeoId, selSeq[0].PosId) && !isVertex(selSeq[1].GeoId, selSeq[1].PosId)) { // Point + Edge + Point workflow - return {{QObject::tr(PICK_SYMMETRY_POINT), {Gui::InputHint::UserInput::MouseLeft}}}; + return {{QObject::tr(PICK_POINT), {Gui::InputHint::UserInput::MouseLeft}}}; } } }