mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Add functions font_set_ui() and font_get_ui(). The font returned by FONT_UI used to be fixed at zero but since buflib-fonts (r30589) can be different, depending on the order of loads and unloads. Fixes broken behavoir in virtual keyboard (FS#12336), lyrics player (FS#12306), and hopefully, FS#12337
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30826 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4d2ab32339
commit
e299eb3ea3
5 changed files with 66 additions and 21 deletions
|
@ -427,7 +427,10 @@ static void ft_load_font(char *file)
|
|||
current_font_id = global_status.font_id[screen];
|
||||
if (current_font_id >= 0)
|
||||
font_unload(current_font_id);
|
||||
global_status.font_id[screen] = font_load(file);
|
||||
current_font_id = font_load(file);
|
||||
if(screen==SCREEN_MAIN)
|
||||
font_set_ui(current_font_id);
|
||||
global_status.font_id[screen] = current_font_id;
|
||||
viewportmanager_theme_changed(THEME_UI_VIEWPORT);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue