From 7c0eb43a238dbce8c5efb3194d5282060ac01988 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 25 May 2018 11:44:37 +0200 Subject: [PATCH] Fix unpausing after cancelling a print The variable name is self._paused, not self._is_paused. This was doing nothing at all. --- plugins/USBPrinting/USBPrinterOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index b2ca5562e3..dcc2387b07 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -385,7 +385,7 @@ class USBPrinterOutputDevice(PrinterOutputDevice): self._gcode.clear() self._printers[0].updateActivePrintJob(None) self._is_printing = False - self._is_paused = False + self._paused = False # Turn off temperatures, fan and steppers self._sendCommand("M140 S0")