Merge pull request #2379 from Russ4262/patch-1

[Path] MillFace: SetupProperties() syntax correction for broken Job GUI fix
This commit is contained in:
sliptonic
2019-07-26 13:51:04 -05:00
committed by GitHub

View File

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