diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-09-20 00:04:39 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-09-20 00:04:39 +0000 |
| commit | fc30b183c826ce006b531a24acfb3484bdd9871b (patch) | |
| tree | 98c66f50bce9dfab48fdc047fe499450d36c1bd8 /apps/filetree.c | |
| parent | 6bb507a34519d721d459e8782100840e47a9859b (diff) | |
| download | rockbox-fc30b183c826ce006b531a24acfb3484bdd9871b.zip rockbox-fc30b183c826ce006b531a24acfb3484bdd9871b.tar.gz rockbox-fc30b183c826ce006b531a24acfb3484bdd9871b.tar.bz2 rockbox-fc30b183c826ce006b531a24acfb3484bdd9871b.tar.xz | |
Redraw the list after exiting the context menu to get rid of various non-blocking splashes in it if custom ui vp is used.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22744 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetree.c')
| -rw-r--r-- | apps/filetree.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/filetree.c b/apps/filetree.c index ec79324..d7e7722 100644 --- a/apps/filetree.c +++ b/apps/filetree.c @@ -181,11 +181,6 @@ static void check_file_thumbnails(struct tree_context* c) closedir(dir); } -static void filetree_drawlists(void) -{ - gui_synclist_draw(&tree_lists); -} - /* support function for qsort() */ static int compare(const void* p1, const void* p2) { @@ -519,7 +514,7 @@ int ft_enter(struct tree_context* c) send_event(GUI_EVENT_REFRESH, NULL); /* for the statusbar */ send_event(GUI_EVENT_ACTIONUPDATE, (void*)true); - filetree_drawlists(); + tree_drawlists(); splash(HZ, ID2P(LANG_SETTINGS_LOADED)); break; @@ -629,7 +624,7 @@ int ft_enter(struct tree_context* c) } } - send_event(GUI_EVENT_REFRESH, filetree_drawlists); + send_event(GUI_EVENT_REFRESH, tree_drawlists); if ( play ) { /* the resume_index must always be the index in the |