From 62c1613e2b5adc4f2f69ff98b703b027a8103c64 Mon Sep 17 00:00:00 2001 From: jdgordon Date: Mon, 23 Nov 2009 06:57:13 +0000 Subject: [PATCH] crappy band-aid fix for statusbar being screwed after leaving plugins... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23720 a1c6a512-1295-4272-9138-f99709370657 --- apps/tree.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/tree.c b/apps/tree.c index db39e838a..d932094d4 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -305,6 +305,9 @@ void tree_gui_init(void) /* drawer function for the GUI_EVENT_REDRAW callback */ void tree_drawlists(void) { + /* band-aid to fix the bar/list redrawing properly after leaving a plugin */ + send_event(GUI_EVENT_THEME_CHANGED, NULL); + /* end bandaid */ gui_synclist_draw(&tree_lists); } -- 2.11.4.GIT