From 19f4e8a562dbe4153e167ee7ecfdc8549199cb2d Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Sun, 6 Aug 2017 23:16:15 -0700 Subject: [PATCH] Fixed Apply button misbehaviour for drilling. --- src/Mod/Path/PathScripts/PathDrilling.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/PathScripts/PathDrilling.py b/src/Mod/Path/PathScripts/PathDrilling.py index 2aae79db00..eed6536a14 100644 --- a/src/Mod/Path/PathScripts/PathDrilling.py +++ b/src/Mod/Path/PathScripts/PathDrilling.py @@ -610,7 +610,7 @@ class TaskPanel: self.obj.Proxy.execute(self.obj) - self.updateFeatureList() + self.setFields() FreeCAD.ActiveDocument.recompute() def addSelected(self): @@ -643,7 +643,7 @@ class TaskPanel: self.obj.Base = baseObjects PathLog.debug("baseObjects=%s, obj.Base=%s" % (baseObjects, self.obj.Base)) - self.updateFeatureList() + self.setFields() FreeCAD.ActiveDocument.recompute()