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

Correct the test to hide bed temperature when no heated bed is present.
This commit is contained in:
Mark 2018-05-19 08:24:47 +02:00 committed by GitHub
commit 74a7452333
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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