diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2008-04-03 13:38:24 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2008-04-03 13:38:24 +0000 |
commit | 0ab1a3b801153cc349d31a97831c68aab301587e (patch) | |
tree | 10599341b0131678013bc4f71d07f09fb159b08d /apps | |
parent | 73a71a4712795cef91849bd1eef327ac68ef19db (diff) |
Small fix to be able to use F3 to quit the F3 quick menu on the Archos Recorder
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16946 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c index 4d3b9faca1..26d224ca59 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -739,7 +739,7 @@ static int dirbrowse() /* don't enter f3 from plugin browser */ if (*tc.dirfilter < NUM_FILTER_MODES) { - if (quick_screen_f3(BUTTON_F3)) + if (quick_screen_f3(ACTION_F3)) reload_dir = true; restore = true; } |