diff options
author | Alexander Levin <al.le@rockbox.org> | 2009-05-14 18:22:24 +0000 |
---|---|---|
committer | Alexander Levin <al.le@rockbox.org> | 2009-05-14 18:22:24 +0000 |
commit | 52a4b48bbf12522a4893ded666e1f1d28308bb18 (patch) | |
tree | 9c9e5526abc99d7e22e180d6e7a19a200d4c6e4d | |
parent | 49c25816f0b76fe71f5efcc38523900bf1429b7b (diff) |
Set the font to FONT_UI after exiting a plugin (FS#10132). This makes the core Rockbox more like a sand box for plugins (less to care about in plugins).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20930 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 7f362c8566..f03b9337f9 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -775,6 +775,7 @@ int plugin_load(const char* plugin, const void* parameter) button_clear_queue(); #ifdef HAVE_LCD_BITMAP + lcd_setfont(FONT_UI); #if LCD_DEPTH > 1 lcd_set_backdrop(old_backdrop); #ifdef HAVE_LCD_COLOR |