Procházet zdrojové kódy

Reimplement #2892

Include #2892 to fix the isHeating symbol in the extruder graphics
AnHardt před 8 roky
rodič
revize
f27c2b6b4b
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1
    1
      Marlin/dogm_lcd_implementation.h

+ 1
- 1
Marlin/dogm_lcd_implementation.h Zobrazit soubor

@@ -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…
Zrušit
Uložit