From e828c5da4d5a7d0b5ea3a95887a8e3e982b2c770 Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Thu, 24 Jul 2025 09:55:15 +0100 Subject: [PATCH] [Sketcher] Ensure All Reference Constraints are Read Only in the Property Editor --- src/Mod/Sketcher/Gui/PropertyConstraintListItem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/Sketcher/Gui/PropertyConstraintListItem.cpp b/src/Mod/Sketcher/Gui/PropertyConstraintListItem.cpp index 88149dbcc5..6a069cc906 100644 --- a/src/Mod/Sketcher/Gui/PropertyConstraintListItem.cpp +++ b/src/Mod/Sketcher/Gui/PropertyConstraintListItem.cpp @@ -109,6 +109,7 @@ void PropertyConstraintListItem::initialize() item->bind(list->createPath(id - 1)); item->setAutoApply(false); + item->setReadOnly(!(*it)->isDriving); } }