mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 22:08:02 +00:00
Reimplement #2892
Include #2892 to fix the isHeating symbol in the extruder graphics
This commit is contained in:
parent
615bec2329
commit
f27c2b6b4b
@ -270,7 +270,7 @@ static void _draw_heater_status(int x, int heater) {
|
|||||||
lcd_print(itostr3(int(heater >= 0 ? degHotend(heater) : degBed()) + 0.5));
|
lcd_print(itostr3(int(heater >= 0 ? degHotend(heater) : degBed()) + 0.5));
|
||||||
|
|
||||||
lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
|
lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
|
||||||
if (!isHeatingHotend(0)) {
|
if (heater >= 0 ? !isHeatingHotend(heater) : !isHeatingBed()) {
|
||||||
u8g.drawBox(x+7,y,2,2);
|
u8g.drawBox(x+7,y,2,2);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user