Fix: SetupProperties() syntax correction

Job GUI broken due to SetupProperties() syntax error
This commit is contained in:
Russell Johnson
2019-07-26 11:18:49 -05:00
committed by GitHub
parent f649fbd39d
commit 228bd786fe

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