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 76bef6b534
commit 75c2aadbb9

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"