summaryrefslogtreecommitdiff
path: root/apps/filetree.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/filetree.c
parenteebde2a3676f7dd11011fabd7c4d74f0cb6532d5 (diff)
downloadrockbox-be214c944503aa250c117b527bfec5e3b01f70ee.zip
rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.tar.gz
rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.tar.bz2
rockbox-be214c944503aa250c117b527bfec5e3b01f70ee.tar.xz
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/filetree.c')
-rw-r--r--apps/filetree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/filetree.c b/apps/filetree.c
index 8fd7be6..d4681ae 100644
--- a/apps/filetree.c
+++ b/apps/filetree.c
@@ -507,6 +507,7 @@ int ft_enter(struct tree_context* c)
splash(0, ID2P(LANG_WAIT));
if (!settings_load_config(buf,true))
break;
+ gui_synclist_draw(&tree_lists);
splash(HZ, ID2P(LANG_SETTINGS_LOADED));
break;