From acf6986705b73a18ad46fce5ec4bfe30dba20cd5 Mon Sep 17 00:00:00 2001 From: Ahmet Cem TURAN Date: Sat, 11 Jun 2011 09:13:13 -0700 Subject: [PATCH] Reversing the extruder did not work. Corrected --- pronterface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pronterface.py b/pronterface.py index 0ffb7ed..a6bdd46 100644 --- a/pronterface.py +++ b/pronterface.py @@ -109,7 +109,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole): def do_reverse(self,l=""): try: 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) except: pass