diff --git a/resources/qml/MonitorButton.qml b/resources/qml/MonitorButton.qml index 5fa68b77cc..77cf7f595e 100644 --- a/resources/qml/MonitorButton.qml +++ b/resources/qml/MonitorButton.qml @@ -29,14 +29,14 @@ Rectangle switch(Cura.MachineManager.printerOutputDevices[0].jobState) { case "printing": - case "pre_print": // heating, etc. case "paused": return true; + case "pre_print": // heating, etc. case "wait_cleanup": - case "ready": // nut sure if this occurs, "" seems to be the ready state. case "offline": case "abort": // note sure if this jobState actually occurs in the wild case "error": // after clicking abort you apparently get "error" + case "ready": // ready to print or getting ready case "": // ready to print or getting ready default: return false;