chiark / gitweb /
Disable pause handling for now.
authordaid <daid303@gmail.com>
Fri, 23 Jan 2015 10:12:19 +0000 (11:12 +0100)
committerdaid <daid303@gmail.com>
Fri, 23 Jan 2015 10:12:19 +0000 (11:12 +0100)
Cura/util/machineCom.py

index c09adb36984a7e4e056ac37fde4b884f9b1d5c03..bfa8d814dee9114bf1909e20509454b830ec7473 100644 (file)
@@ -584,7 +584,7 @@ class MachineCom(object):
                        line = line[0]
                try:
                        if line == 'M0' or line == 'M1':
-                               self.setPause(True)
+                               #self.setPause(True)
                                line = 'M105'   #Don't send the M0 or M1 to the machine, as M0 and M1 are handled as an LCD menu pause.
                        if self._printSection in self._feedRateModifier:
                                line = re.sub('F([0-9]*)', lambda m: 'F' + str(int(int(m.group(1)) * self._feedRateModifier[self._printSection])), line)