chiark / gitweb /
Remove a number of incomplete features
[cura.git] / Cura / util / machineCom.py
index 5fe86611c4aacdfe77b14981a1b54bd74c74f0da..650452dfbec1d4b43f8ba615756339870e7f016c 100644 (file)
@@ -587,7 +587,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)