Explorar el Código

Reimplement #2892

Include #2892 to fix the isHeating symbol in the extruder graphics
AnHardt hace 8 años
padre
commit
f27c2b6b4b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/dogm_lcd_implementation.h

+ 1
- 1
Marlin/dogm_lcd_implementation.h Ver fichero

@@ -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…
Cancelar
Guardar