mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue