From 6dd17e04fbf41b68545f5a941f66323b0ae58fcf Mon Sep 17 00:00:00 2001 From: daid Date: Fri, 23 Jan 2015 11:12:19 +0100 Subject: [PATCH] Disable pause handling for now. --- Cura/util/machineCom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/machineCom.py b/Cura/util/machineCom.py index c09adb36..bfa8d814 100644 --- a/Cura/util/machineCom.py +++ b/Cura/util/machineCom.py @@ -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) -- 2.30.2