From d37230175f5f2bd9dbc89a4e7c24ad3335cc3517 Mon Sep 17 00:00:00 2001 From: captain0xff Date: Tue, 2 Sep 2025 19:42:25 +0530 Subject: [PATCH] Part: disable dragger for the thickness operation --- src/Mod/Part/Gui/TaskThickness.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Mod/Part/Gui/TaskThickness.cpp b/src/Mod/Part/Gui/TaskThickness.cpp index da891c6f43..b44fb33965 100644 --- a/src/Mod/Part/Gui/TaskThickness.cpp +++ b/src/Mod/Part/Gui/TaskThickness.cpp @@ -116,7 +116,10 @@ ThicknessWidget::ThicknessWidget(Part::Thickness* thickness, QWidget* parent) d->ui.spinOffset->bind(d->thickness->Value); - setupGizmos(); + // The interactive gizmos are implemented for this operation just as a proof + // of concept. And so, it is kept disabled until the other operations of the + // Part workbench are covered. + // setupGizmos(); } ThicknessWidget::~ThicknessWidget()