From 74b6af93b1436dc61e8f10b3aff3c79face5faba Mon Sep 17 00:00:00 2001 From: Kevin Ferrare Date: Tue, 22 Nov 2005 03:38:07 +0000 Subject: Added multi-screen support for quickscreen (mostly rewritten from scratch) and USB screen ; just looking at the hour makes me think it could be buggy git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8039 a1c6a512-1295-4272-9138-f99709370657 --- apps/tree.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'apps/tree.c') diff --git a/apps/tree.c b/apps/tree.c index bed4fb2..33b482b 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -712,10 +712,13 @@ static bool dirbrowse(void) #ifdef TREE_QUICK case TREE_QUICK: +#ifdef TREE_RC_QUICK + case TREE_RC_QUICK: +#endif /* don't enter f2 from plugin browser */ if (*tc.dirfilter < NUM_FILTER_MODES) { - if (quick_screen(curr_context, TREE_QUICK)) + if (quick_screen_quick()) reload_dir = true; restore = true; @@ -730,7 +733,7 @@ static bool dirbrowse(void) /* don't enter f3 from plugin browser */ if (*tc.dirfilter < NUM_FILTER_MODES) { - if (quick_screen(curr_context, BUTTON_F3)) + if (quick_screen_f3()) reload_dir = true; restore = true; } -- cgit v1.1