From: daid Date: Fri, 23 Jan 2015 10:12:19 +0000 (+0100) Subject: Disable pause handling for now. X-Git-Tag: 15.01-RC11~4 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=6dd17e04fbf41b68545f5a941f66323b0ae58fcf;p=cura.git Disable pause handling for now. --- 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)