Skip to content
Snippets Groups Projects
Commit 5fb88a27 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

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

Fixes missing icons from status screen
parents 3c14c01a 04b2abb6
No related branches found
No related tags found
No related merge requests found
......@@ -306,10 +306,14 @@ static void lcd_implementation_status_screen() {
bool blink = lcd_blink();
#if HAS_FAN0
// Symbols menu graphics, animated fan
u8g.drawBitmapP(9, 1, STATUS_SCREENBYTEWIDTH, STATUS_SCREENHEIGHT, blink && fanSpeeds[0] ? status_screen0_bmp : status_screen1_bmp);
u8g.drawBitmapP(9, 1, STATUS_SCREENBYTEWIDTH, STATUS_SCREENHEIGHT,
#if HAS_FAN0
blink && fanSpeeds[0] ? status_screen0_bmp : status_screen1_bmp
#else
status_screen0_bmp
#endif
);
#if ENABLED(SDSUPPORT)
// SD Card Symbol
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment