Fixed xy vs. z speed order for MS and JS command.

This commit is contained in:
Markus Lampert
2017-08-17 14:28:39 -07:00
committed by wmayer
parent 3b097a360f
commit fd54f7209d

View File

@@ -205,7 +205,7 @@ def move(command):
zspeed = "{:f}".format(GetValue(speed))
if ('X' in axis) or ('Y' in axis):
xyspeed = "{:f}".format(GetValue(speed))
txt += "{},{},{}\n".format(movetype, zspeed, xyspeed)
txt += "{},{},{}\n".format(movetype, xyspeed, zspeed)
if command.Name in ['G0', 'G00']:
pref = "J"