From 9edc9306b984a93c7065b4e98624759e675de744 Mon Sep 17 00:00:00 2001 From: kugel Date: Sat, 19 Sep 2009 23:31:10 +0000 Subject: [PATCH] Fix the statusbar to redraw after changing colors in the color picker screen. That send_event() should be within settings_apply() actually, but making that work is more involved, so it should be done after the release. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22741 a1c6a512-1295-4272-9138-f99709370657 --- apps/menus/theme_menu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/menus/theme_menu.c b/apps/menus/theme_menu.c index 38e052b26..3459e1d08 100644 --- a/apps/menus/theme_menu.c +++ b/apps/menus/theme_menu.c @@ -95,6 +95,7 @@ static int set_color_func(void* color) colors[c].setting, banned_color); settings_save(); settings_apply(false); + send_event(GUI_EVENT_ACTIONUPDATE, (void*)true); return res; } -- 2.11.4.GIT