Correct the test to hide bed temperature when no heated bed is present.

This commit is contained in:
Nicolas Graziano 2018-05-14 12:13:23 +02:00
parent ab0e643481
commit 9080e75634

View file

@ -67,7 +67,7 @@ Column
HeatedBedBox
{
visible: {
if(activePrinter != null && activePrinter.bed_temperature != -1)
if(activePrinter != null && activePrinter.bedTemperature != -1)
{
return true
}