Commit e4900990 authored by Guillaume Seguin's avatar Guillaume Seguin

Fix #468

parent 98752507
......@@ -394,11 +394,11 @@ class PronterWindow(MainWindow, pronsole.pronsole):
def do_pront_extrude(self, l = ""):
feed = self.settings.e_feedrate
self.do_extrude_final(self.edit.GetValue(), feed)
self.do_extrude_final(self.edist.GetValue(), feed)
def do_pront_reverse(self, l = ""):
feed = self.settings.e_feedrate
self.do_extrude_final(- self.edit.GetValue(), feed)
self.do_extrude_final(- self.edist.GetValue(), feed)
def setbedgui(self, f):
self.bsetpoint = f
......
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