Use the user font in the quickscreen if it fits. Still uses
LANG_SYSFONT_x... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12587 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2a62f57ebf
commit
4de9fbeda6
1 changed files with 4 additions and 1 deletions
|
@ -59,7 +59,10 @@ void gui_quickscreen_draw(struct gui_quickscreen * qs, struct screen * display)
|
|||
display->has_buttonbar=false;
|
||||
#endif
|
||||
gui_textarea_clear(display);
|
||||
display->setfont(FONT_SYSFIXED);
|
||||
if (display->height / display->char_height < 7) /* we need at leats 7 lines */
|
||||
{
|
||||
display->setfont(FONT_SYSFIXED);
|
||||
}
|
||||
display->getstringsize("A", NULL, &font_h);
|
||||
|
||||
/* Displays the first line of text */
|
||||
|
|
Loading…
Reference in a new issue