Skip to content

Commit

Permalink
Reimplement #2892
Browse files Browse the repository at this point in the history
Include #2892 to fix the isHeating symbol in the extruder graphics
  • Loading branch information
AnHardt committed Feb 28, 2016
1 parent 615bec2 commit f27c2b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/dogm_lcd_implementation.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit f27c2b6

Please sign in to comment.