Commit 19399407 authored by Jordan Miller's avatar Jordan Miller

Relative moves with the jog dial move with G0 instead of G1

parent d815ff64
......@@ -1690,7 +1690,7 @@ class pronsole(cmd.Cmd):
except:
pass
self.p.send_now("G91")
self.p.send_now("G1 " + axis + str(l[1]) + " F" + str(feed))
self.p.send_now("G0 " + axis + str(l[1]) + " F" + str(feed))
self.p.send_now("G90")
def help_move(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment