Commit acf69867 authored by Ahmet Cem TURAN's avatar Ahmet Cem TURAN

Reversing the extruder did not work. Corrected

parent 40ba0e59
...@@ -109,7 +109,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole): ...@@ -109,7 +109,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
def do_reverse(self,l=""): def do_reverse(self,l=""):
try: try:
if not (l.__class__=="".__class__ or l.__class__==u"".__class__) or (not len(l)): if not (l.__class__=="".__class__ or l.__class__==u"".__class__) or (not len(l)):
l=str(self.edist.GetValue()) l=str(self.edist.GetValue()*-1)
pronsole.pronsole.do_extrude(self,l) pronsole.pronsole.do_extrude(self,l)
except: except:
pass pass
......
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