Path: fix boundaryDressup Apply button enable

ensure Apply button enabled when boundary limits are edited.
This commit is contained in:
J-Dunn
2020-02-11 00:05:20 +00:00
committed by GitHub
parent c285e524b1
commit b7700d2de9

View File

@@ -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):