Browse Source

Merge pull request #3811 from ngraziano/monitor-no-heating-bed

Correct the test to hide bed temperature when no heated bed is present.
Mark 6 years ago
parent
commit
74a7452333
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/PrintMonitor.qml

+ 1 - 1
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
             }