From 194f5d779e7cd3563ad71d6ac4fe3ed2531be1b6 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 12 Mar 2019 01:04:24 +0100 Subject: [PATCH] fixes 0003894: Part Thickness dialog thickness field not Expressions enabled --- src/Mod/Part/Gui/TaskThickness.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/Part/Gui/TaskThickness.cpp b/src/Mod/Part/Gui/TaskThickness.cpp index 31a40c2dcd..269257962a 100644 --- a/src/Mod/Part/Gui/TaskThickness.cpp +++ b/src/Mod/Part/Gui/TaskThickness.cpp @@ -119,6 +119,8 @@ ThicknessWidget::ThicknessWidget(Part::Thickness* thickness, QWidget* parent) QSignalBlocker blockSelfInt(d->ui.selfIntersection); bool selfint = d->thickness->SelfIntersection.getValue(); d->ui.selfIntersection->setChecked(selfint); + + d->ui.spinOffset->bind(d->thickness->Value); } ThicknessWidget::~ThicknessWidget()