mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 00:59:01 +08:00
Allow pre-heating bed while pausing
It is allowed during the pause. So it should also be allowed when transitioning towards the pause. Contributes to issue CURA-3161.
This commit is contained in:
parent
34f929c9df
commit
98e3e2a25a
@ -337,7 +337,7 @@ Column
|
||||
{
|
||||
return false; //Can't preheat if not connected.
|
||||
}
|
||||
if (connectedPrinter.jobState == "printing" || connectedPrinter.jobState == "pre_print" || connectedPrinter.jobState == "pausing" || connectedPrinter.jobState == "resuming" || connectedPrinter.jobState == "error" || connectedPrinter.jobState == "offline")
|
||||
if (connectedPrinter.jobState == "printing" || connectedPrinter.jobState == "pre_print" || connectedPrinter.jobState == "resuming" || connectedPrinter.jobState == "error" || connectedPrinter.jobState == "offline")
|
||||
{
|
||||
return false; //Printer is in a state where it can't react to pre-heating.
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user