Sfoglia il codice sorgente

Fixes #3312: Missing all icons from status screen

João Brázio 8 anni fa
parent
commit
04b2abb6aa
1 ha cambiato i file con 8 aggiunte e 4 eliminazioni
  1. 8
    4
      Marlin/dogm_lcd_implementation.h

+ 8
- 4
Marlin/dogm_lcd_implementation.h Vedi File

@@ -306,10 +306,14 @@ static void lcd_implementation_status_screen() {
306 306
 
307 307
   bool blink = lcd_blink();
308 308
 
309
-  #if HAS_FAN0
310
-    // Symbols menu graphics, animated fan
311
-    u8g.drawBitmapP(9, 1, STATUS_SCREENBYTEWIDTH, STATUS_SCREENHEIGHT, blink && fanSpeeds[0] ? status_screen0_bmp : status_screen1_bmp);
312
-  #endif
309
+  // Symbols menu graphics, animated fan
310
+  u8g.drawBitmapP(9, 1, STATUS_SCREENBYTEWIDTH, STATUS_SCREENHEIGHT,
311
+    #if HAS_FAN0
312
+      blink && fanSpeeds[0] ? status_screen0_bmp : status_screen1_bmp
313
+    #else
314
+      status_screen0_bmp
315
+    #endif
316
+  );
313 317
 
314 318
   #if ENABLED(SDSUPPORT)
315 319
     // SD Card Symbol

Loading…
Annulla
Salva