summaryrefslogtreecommitdiff
path: root/apps/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tree.c')
-rw-r--r--apps/tree.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c
index bed4fb28fc..33b482b3d7 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -712,10 +712,13 @@ static bool dirbrowse(void)
712 712
713#ifdef TREE_QUICK 713#ifdef TREE_QUICK
714 case TREE_QUICK: 714 case TREE_QUICK:
715#ifdef TREE_RC_QUICK
716 case TREE_RC_QUICK:
717#endif
715 /* don't enter f2 from plugin browser */ 718 /* don't enter f2 from plugin browser */
716 if (*tc.dirfilter < NUM_FILTER_MODES) 719 if (*tc.dirfilter < NUM_FILTER_MODES)
717 { 720 {
718 if (quick_screen(curr_context, TREE_QUICK)) 721 if (quick_screen_quick())
719 reload_dir = true; 722 reload_dir = true;
720 restore = true; 723 restore = true;
721 724
@@ -730,7 +733,7 @@ static bool dirbrowse(void)
730 /* don't enter f3 from plugin browser */ 733 /* don't enter f3 from plugin browser */
731 if (*tc.dirfilter < NUM_FILTER_MODES) 734 if (*tc.dirfilter < NUM_FILTER_MODES)
732 { 735 {
733 if (quick_screen(curr_context, BUTTON_F3)) 736 if (quick_screen_f3())
734 reload_dir = true; 737 reload_dir = true;
735 restore = true; 738 restore = true;
736 } 739 }