Commit 269dc64b authored by Guillaume Seguin's avatar Guillaume Seguin

Revert "Fix #577: use G1 instead of G0 for manual moves"

This reverts commit a2c0d7a4.
parent a2c0d7a4
......@@ -1459,7 +1459,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):
......
......@@ -587,7 +587,7 @@ class PronterWindow(MainWindow, pronsole.pronsole):
center_x = self.build_dimensions_list[0] / 2 + self.build_dimensions_list[3]
center_y = self.build_dimensions_list[1] / 2 + self.build_dimensions_list[4]
feed = self.settings.xy_feedrate
self.onecmd('G1 X%s Y%s F%s' % (center_x, center_y, feed))
self.onecmd('G0 X%s Y%s F%s' % (center_x, center_y, feed))
else:
return
self.p.send_now('M114')
......
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