Skip to content

Commit

Permalink
Fix for 2773 and two other minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlampert committed Nov 16, 2016
1 parent 48c118c commit 0c5d556
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Mod/Path/PathScripts/PathArray.py
Expand Up @@ -65,7 +65,7 @@ def execute(self, obj):

# build copies
basepath = obj.Base.Path
output = basepath.toGCode()
output = ""
pl = FreeCAD.Placement()
if obj.Offset != FreeCAD.Vector():
for i in range(obj.Copies):
Expand Down
1 change: 1 addition & 0 deletions src/Mod/Path/PathScripts/PathJob.py
Expand Up @@ -321,6 +321,7 @@ def setFields(self):
self.obj.Proxy.onChanged(self.obj, "PostProcessor")
self.updateTooltips()

self.form.PathsList.clear()
for child in self.obj.Group:
self.form.PathsList.addItem(child.Name)

Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Path/PathScripts/PathMillFace.py
Expand Up @@ -178,7 +178,7 @@ def buildpathlibarea(self, obj, a):
obj.FinishDepth.Value,
obj.FinalDepth.Value)

extraoffset = 1 - obj.PassExtension.Value
extraoffset = - obj.PassExtension.Value
stepover = (self.radius * 2) * (float(obj.StepOver)/100)
use_zig_zag = obj.UseZigZag
zig_angle = obj.ZigZagAngle
Expand Down

0 comments on commit 0c5d556

Please sign in to comment.