diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index 5185c1fbe2..dc51bbaf01 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -336,6 +336,10 @@ Column { return false; //Target temperature too high. } + if (parseInt(preheatTemperatureInput.text) == 0) + { + return false; //Setting the temperature to 0 is not allowed (since that cancels the pre-heating). + } return true; //Preconditions are met. } anchors.right: parent.right