summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-06-08 18:19:43 +0000
committerThomas Martitz <kugel@rockbox.org>2009-06-08 18:19:43 +0000
commitbe214c944503aa250c117b527bfec5e3b01f70ee (patch)
treee8b0b21fd5a917a8167916026414f90c2b6adffe /apps/settings.c
parenteebde2a3676f7dd11011fabd7c4d74f0cb6532d5 (diff)
downloadrockbox-be214c944503aa250c117b527bfec5e3b01f70ee.tar.gz
rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.zip
Fix a problem that the statusbar was redrawn to late and not really in sync with the lists when changing loading a (theme) .cfg or changing the colors witht the color picker. Now both, the statusbar and the tree lists are redrawn instantly after settings_apply() (even before the "Theme loaded" splash).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21222 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r--apps/settings.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 0457f879c6..6652141f9c 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -66,7 +66,7 @@
66#include "filetypes.h" 66#include "filetypes.h"
67#include "option_select.h" 67#include "option_select.h"
68#include "backdrop.h" 68#include "backdrop.h"
69 69#include "appevents.h"
70#if CONFIG_TUNER 70#if CONFIG_TUNER
71#include "radio.h" 71#include "radio.h"
72#endif 72#endif
@@ -972,6 +972,7 @@ void settings_apply(bool read_disk)
972 enc_global_settings_apply(); 972 enc_global_settings_apply();
973#endif 973#endif
974 list_init_viewports(NULL); 974 list_init_viewports(NULL);
975 send_event(GUI_EVENT_ACTIONUPDATE, (void*)true);
975} 976}
976 977
977 978