chiark / gitweb /
Disable pause feature
[cura.git] / Cura / util / machineCom.py
index e6764400b4a9e7412cbb04bd3cf91e3ed4790a04..ad84d24fdb154b1867084e14ad467e9c1c65e42e 100644 (file)
@@ -597,7 +597,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)