mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 00:19:01 +08:00
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:
parent
f5a7707139
commit
7c0eb43a23
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user