Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

PictureFlow: fix colors for keyboard and full screen tags

Change-Id: I2dfaf1ff982c6b1c7b7387d673818de7428f85a5

+6
+6
apps/plugins/pictureflow/pictureflow.c
··· 4194 4194 #ifdef USEGSLIB 4195 4195 rb->lcd_set_foreground(N_BRIGHT(0)); 4196 4196 rb->lcd_set_background(N_BRIGHT(255)); 4197 + #elif defined (HAVE_LCD_COLOR) 4198 + rb->lcd_set_background(rb->global_settings->bg_color); 4199 + rb->lcd_set_foreground(rb->global_settings->fg_color); 4197 4200 #endif 4198 4201 #endif 4199 4202 insert_whole_album = (pf_state != pf_show_tracks) || show_tracks_while_browsing; ··· 4211 4214 free_borrowed_tracks(); 4212 4215 #ifdef USEGSLIB 4213 4216 grey_show(true); 4217 + #elif LCD_DEPTH > 1 && defined(HAVE_LCD_COLOR) 4218 + rb->lcd_set_background(N_BRIGHT(0)); 4219 + rb->lcd_set_foreground(N_BRIGHT(255)); 4214 4220 #endif 4215 4221 mylcd_set_drawmode(DRMODE_FG); 4216 4222 }