CAM: LeadInOut - Fix RetractThreshold in Task panel

This commit is contained in:
tarman3
2025-09-25 11:37:39 +03:00
parent 4911c23d1f
commit aa7b8f977c
2 changed files with 4 additions and 2 deletions

View File

@@ -1123,6 +1123,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()
styleEnum = self.obj.getEnumerationsOfProperty("StyleIn")

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",
]