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:
Jonathan Gordon 2007-03-04 13:04:15 +00:00
parent 2a62f57ebf
commit 4de9fbeda6

View file

@ -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 */