Skip to content

Commit

Permalink
Fix: SetupProperties() syntax correction
Browse files Browse the repository at this point in the history
Job GUI broken due to SetupProperties() syntax error
  • Loading branch information
Russ4262 committed Jul 26, 2019
1 parent 03054e8 commit 730efb9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Mod/Path/PathScripts/PathMillFace.py
Expand Up @@ -253,7 +253,10 @@ def isOverlap(fMn, fMx, eMn, eMx):


def SetupProperties():
return PathPocketBase.SetupProperties().extend(["BoundaryShape", "ExcludeRaisedAreas"])
setup = PathPocketBase.SetupProperties()
setup.append("BoundaryShape")
setup.append("ExcludeRaisedAreas")
return setup


def Create(name, obj=None):
Expand Down

0 comments on commit 730efb9

Please sign in to comment.