Browse Source

Merge pull request #3314 from jbrazio/bugfix/followup-3235

Fixes missing icons from status screen
pull/1/head
Scott Lahteine 9 years ago
parent
commit
5fb88a2754
  1. 12
      Marlin/dogm_lcd_implementation.h

12
Marlin/dogm_lcd_implementation.h

@ -306,10 +306,14 @@ static void lcd_implementation_status_screen() {
bool blink = lcd_blink(); bool blink = lcd_blink();
#if HAS_FAN0 // Symbols menu graphics, animated fan
// Symbols menu graphics, animated fan u8g.drawBitmapP(9, 1, STATUS_SCREENBYTEWIDTH, STATUS_SCREENHEIGHT,
u8g.drawBitmapP(9, 1, STATUS_SCREENBYTEWIDTH, STATUS_SCREENHEIGHT, blink && fanSpeeds[0] ? status_screen0_bmp : status_screen1_bmp); #if HAS_FAN0
#endif blink && fanSpeeds[0] ? status_screen0_bmp : status_screen1_bmp
#else
status_screen0_bmp
#endif
);
#if ENABLED(SDSUPPORT) #if ENABLED(SDSUPPORT)
// SD Card Symbol // SD Card Symbol

Loading…
Cancel
Save