Browse Source

Fixes #3312: Missing all icons from status screen

João Brázio 9 years ago
parent
commit
04b2abb6aa
1 changed files with 8 additions and 4 deletions
  1. 8
    4
      Marlin/dogm_lcd_implementation.h

+ 8
- 4
Marlin/dogm_lcd_implementation.h View File

306
 
306
 
307
   bool blink = lcd_blink();
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
   #if ENABLED(SDSUPPORT)
318
   #if ENABLED(SDSUPPORT)
315
     // SD Card Symbol
319
     // SD Card Symbol

Loading…
Cancel
Save