mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00
Merge pull request #3620 from fieldOfView/fix_preheat_end_during_print
[3.3] Prevent preheat timeout from occurring during a print
This commit is contained in:
commit
dc52678c05
2 changed files with 17 additions and 0 deletions
|
@ -96,6 +96,9 @@ class USBPrinterOutputDevice(PrinterOutputDevice):
|
|||
if self._is_printing:
|
||||
return # Aleady printing
|
||||
|
||||
# cancel any ongoing preheat timer before starting a print
|
||||
self._printers[0].stopPreheatTimers()
|
||||
|
||||
Application.getInstance().getController().setActiveStage("MonitorStage")
|
||||
|
||||
# find the G-code for the active build plate to print
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue