From 75c2aadbb9d7e8c231f32a03d036224b97b86e14 Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Thu, 17 Aug 2017 14:28:39 -0700 Subject: [PATCH] Fixed xy vs. z speed order for MS and JS command. --- src/Mod/Path/PathScripts/post/opensbp_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/post/opensbp_post.py b/src/Mod/Path/PathScripts/post/opensbp_post.py index 4d49ebfc17..7a11d131da 100644 --- a/src/Mod/Path/PathScripts/post/opensbp_post.py +++ b/src/Mod/Path/PathScripts/post/opensbp_post.py @@ -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"