diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-09-19 23:31:10 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-09-19 23:31:10 +0000 |
| commit | ec0f581c05268fee24ed62b8f95856c429c77d9f (patch) | |
| tree | 5727d417fffbd33b1aeb0a57d8a2618b56f86fd3 | |
| parent | dad3f299936c08e8689a5db242a687fc2638002d (diff) | |
| download | rockbox-ec0f581c05268fee24ed62b8f95856c429c77d9f.zip rockbox-ec0f581c05268fee24ed62b8f95856c429c77d9f.tar.gz rockbox-ec0f581c05268fee24ed62b8f95856c429c77d9f.tar.bz2 rockbox-ec0f581c05268fee24ed62b8f95856c429c77d9f.tar.xz | |
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
| -rw-r--r-- | apps/menus/theme_menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/menus/theme_menu.c b/apps/menus/theme_menu.c index 38e052b..3459e1d 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; } |