Merge pull request #24216 from tarman3/leadinout_threshold

CAM: LeadInOut - Fix RetractThreshold in Task panel
This commit is contained in:
sliptonic
2025-10-03 11:28:59 -05:00
committed by GitHub
2 changed files with 4 additions and 2 deletions

View File

@@ -1125,6 +1125,7 @@ class TaskDressupLeadInOut(SimpleEditPanel):
self.connectWidget("OffsetIn", self.form.dspOffsetIn)
self.connectWidget("OffsetOut", self.form.dspOffsetOut)
self.connectWidget("RapidPlunge", self.form.chkRapidPlunge)
self.connectWidget("RetractThreshold", self.form.dspRetractThreshold)
self.setFields()
def handleGroupBoxCheck():

View File

@@ -6,9 +6,10 @@ translate = FreeCAD.Qt.translate
PROP_TYPE_QTYES = ["App::PropertyDistance", "App::PropertyAngle"]
PROP_TYPE_NUMERIC = PROP_TYPE_QTYES + [
"App::PropertyPercent",
"App::PropertyFloat",
"App::PropertyInteger",
"App:PropertyFloat",
"App::PropertyLength",
"App::PropertyPercent",
]