Include #2892 to fix the isHeating symbol in the extruder graphics
This commit is contained in:
AnHardt 2016-02-28 22:34:10 +01:00
parent 615bec2329
commit f27c2b6b4b

View File

@ -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_printPGM(PSTR(LCD_STR_DEGREE " "));
if (!isHeatingHotend(0)) {
if (heater >= 0 ? !isHeatingHotend(heater) : !isHeatingBed()) {
u8g.drawBox(x+7,y,2,2);
}
else {