From 228bd786fed8d13f8b70adb42c9cb2c1d6f932f2 Mon Sep 17 00:00:00 2001 From: Russell Johnson <47639332+Russ4262@users.noreply.github.com> Date: Fri, 26 Jul 2019 11:18:49 -0500 Subject: [PATCH] Fix: SetupProperties() syntax correction Job GUI broken due to SetupProperties() syntax error --- src/Mod/Path/PathScripts/PathMillFace.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathMillFace.py b/src/Mod/Path/PathScripts/PathMillFace.py index 78b8f40803..362fd18d17 100644 --- a/src/Mod/Path/PathScripts/PathMillFace.py +++ b/src/Mod/Path/PathScripts/PathMillFace.py @@ -253,7 +253,10 @@ class ObjectFace(PathPocketBase.ObjectPocket): def SetupProperties(): - return PathPocketBase.SetupProperties().extend(["BoundaryShape", "ExcludeRaisedAreas"]) + setup = PathPocketBase.SetupProperties() + setup.append("BoundaryShape") + setup.append("ExcludeRaisedAreas") + return setup def Create(name, obj=None):