mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
PictureFlow: fix colors for keyboard and full screen tags
Change-Id: I2dfaf1ff982c6b1c7b7387d673818de7428f85a5
This commit is contained in:
parent
8bd62e35cc
commit
bfef0a2d6c
1 changed files with 6 additions and 0 deletions
|
@ -4194,6 +4194,9 @@ static bool context_menu_ready(void)
|
|||
#ifdef USEGSLIB
|
||||
rb->lcd_set_foreground(N_BRIGHT(0));
|
||||
rb->lcd_set_background(N_BRIGHT(255));
|
||||
#elif defined (HAVE_LCD_COLOR)
|
||||
rb->lcd_set_background(rb->global_settings->bg_color);
|
||||
rb->lcd_set_foreground(rb->global_settings->fg_color);
|
||||
#endif
|
||||
#endif
|
||||
insert_whole_album = (pf_state != pf_show_tracks) || show_tracks_while_browsing;
|
||||
|
@ -4211,6 +4214,9 @@ static void context_menu_cleanup(void)
|
|||
free_borrowed_tracks();
|
||||
#ifdef USEGSLIB
|
||||
grey_show(true);
|
||||
#elif LCD_DEPTH > 1 && defined(HAVE_LCD_COLOR)
|
||||
rb->lcd_set_background(N_BRIGHT(0));
|
||||
rb->lcd_set_foreground(N_BRIGHT(255));
|
||||
#endif
|
||||
mylcd_set_drawmode(DRMODE_FG);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue