From b7700d2de94fa4c6e88556bccbd18eaa645bb15a Mon Sep 17 00:00:00 2001 From: J-Dunn Date: Tue, 11 Feb 2020 00:05:20 +0000 Subject: [PATCH] Path: fix boundaryDressup Apply button enable ensure Apply button enabled when boundary limits are edited. --- .../Path/PathScripts/PathDressupPathBoundaryGui.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Mod/Path/PathScripts/PathDressupPathBoundaryGui.py b/src/Mod/Path/PathScripts/PathDressupPathBoundaryGui.py index 072c567c63..4ee524f05a 100644 --- a/src/Mod/Path/PathScripts/PathDressupPathBoundaryGui.py +++ b/src/Mod/Path/PathScripts/PathDressupPathBoundaryGui.py @@ -169,6 +169,17 @@ class TaskPanel(object): self.form.stock.currentIndexChanged.connect(self.updateStockEditor) self.form.stockInside.stateChanged.connect(self.setDirty) + self.form.stockExtXneg.textChanged.connect(self.setDirty) + self.form.stockExtXpos.textChanged.connect(self.setDirty) + self.form.stockExtYneg.textChanged.connect(self.setDirty) + self.form.stockExtYpos.textChanged.connect(self.setDirty) + self.form.stockExtZneg.textChanged.connect(self.setDirty) + self.form.stockExtZpos.textChanged.connect(self.setDirty) + self.form.stockBoxLength.textChanged.connect(self.setDirty) + self.form.stockBoxWidth.textChanged.connect(self.setDirty) + self.form.stockBoxHeight.textChanged.connect(self.setDirty) + self.form.stockCylinderRadius.textChanged.connect(self.setDirty) + self.form.stockCylinderHeight.textChanged.connect(self.setDirty) class DressupPathBoundaryViewProvider(object):