From fd54f7209d1f4c86180482ee22c6e60cb07d571c 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"