From 9080e756348e232324b60da64f8d533cd30c7084 Mon Sep 17 00:00:00 2001 From: Nicolas Graziano Date: Mon, 14 May 2018 12:13:23 +0200 Subject: [PATCH] Correct the test to hide bed temperature when no heated bed is present. --- resources/qml/PrintMonitor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index ae74170004..b24bcb6d6c 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -67,7 +67,7 @@ Column HeatedBedBox { visible: { - if(activePrinter != null && activePrinter.bed_temperature != -1) + if(activePrinter != null && activePrinter.bedTemperature != -1) { return true }