Merge pull request #3303 from Panayiotis-git/MK3_3.10.1

Print temperatures only if filament loading is still active
This commit is contained in:
DRracer 2021-11-18 11:59:05 +01:00 committed by GitHub
commit bb9ba95bfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2317,8 +2317,10 @@ void mFilamentItem(uint16_t nTemp, uint16_t nTempBed)
}
}
lcd_set_cursor(0, 0);
lcdui_print_temp(LCD_STR_THERMOMETER[0], (int) degHotend(0), (int) degTargetHotend(0));
if (bFilamentWaitingFlag) {
lcd_set_cursor(0, 0);
lcdui_print_temp(LCD_STR_THERMOMETER[0], (int) degHotend(0), (int) degTargetHotend(0));
}
if (lcd_clicked())
{