Просмотр исходного кода

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 лет назад
Родитель
Сommit
74a7452333
1 измененных файлов с 1 добавлено и 1 удалено
  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
             }