Browse Source

Reimplement #2892

Include #2892 to fix the isHeating symbol in the extruder graphics
AnHardt 8 years ago
parent
commit
f27c2b6b4b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/dogm_lcd_implementation.h

+ 1
- 1
Marlin/dogm_lcd_implementation.h View File

@@ -270,7 +270,7 @@ static void _draw_heater_status(int x, int heater) {
270 270
   lcd_print(itostr3(int(heater >= 0 ? degHotend(heater) : degBed()) + 0.5));
271 271
 
272 272
   lcd_printPGM(PSTR(LCD_STR_DEGREE " "));
273
-  if (!isHeatingHotend(0)) {
273
+  if (heater >= 0 ? !isHeatingHotend(heater) : !isHeatingBed()) {
274 274
     u8g.drawBox(x+7,y,2,2);
275 275
   }
276 276
   else {

Loading…
Cancel
Save