Fix unpausing after cancelling a print

The variable name is self._paused, not self._is_paused. This was doing nothing at all.
This commit is contained in:
Ghostkeeper 2018-05-25 11:44:37 +02:00
parent f5a7707139
commit 7c0eb43a23
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A

View file

@ -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")