summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-09-20 00:04:39 +0000
committerThomas Martitz <kugel@rockbox.org>2009-09-20 00:04:39 +0000
commitfc30b183c826ce006b531a24acfb3484bdd9871b (patch)
tree98c66f50bce9dfab48fdc047fe499450d36c1bd8 /apps/tree.c
parent6bb507a34519d721d459e8782100840e47a9859b (diff)
downloadrockbox-fc30b183c826ce006b531a24acfb3484bdd9871b.tar.gz
rockbox-fc30b183c826ce006b531a24acfb3484bdd9871b.zip
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/tree.c')
-rw-r--r--apps/tree.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 228f491c15..3570798706 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -72,6 +72,7 @@
72#include "splash.h" 72#include "splash.h"
73#include "buttonbar.h" 73#include "buttonbar.h"
74#include "quickscreen.h" 74#include "quickscreen.h"
75#include "appevents.h"
75 76
76#include "root_menu.h" 77#include "root_menu.h"
77 78
@@ -301,6 +302,12 @@ void tree_gui_init(void)
301} 302}
302 303
303 304
305/* drawer function for the GUI_EVENT_REDRAW callback */
306void tree_drawlists(void)
307{
308 gui_synclist_draw(&tree_lists);
309}
310
304 311
305struct tree_context* tree_get_context(void) 312struct tree_context* tree_get_context(void)
306{ 313{
@@ -778,6 +785,7 @@ static int dirbrowse()
778 } 785 }
779 onplay_result = onplay(buf, attr, curr_context); 786 onplay_result = onplay(buf, attr, curr_context);
780 } 787 }
788 send_event(GUI_EVENT_REFRESH, tree_drawlists);
781 switch (onplay_result) 789 switch (onplay_result)
782 { 790 {
783 case ONPLAY_MAINMENU: 791 case ONPLAY_MAINMENU: