diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-01 13:01:14 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-01 13:01:14 +0000 |
| commit | 421b67ea7792ec30a694021be638e2fd57c20737 (patch) | |
| tree | 25df46a214cd2bda6e592afe379a841bb5b4996a | |
| parent | a2eb38a8c52df6bd27158acdb8e27bef188aaf7d (diff) | |
| download | rockbox-421b67ea7792ec30a694021be638e2fd57c20737.zip rockbox-421b67ea7792ec30a694021be638e2fd57c20737.tar.gz rockbox-421b67ea7792ec30a694021be638e2fd57c20737.tar.bz2 rockbox-421b67ea7792ec30a694021be638e2fd57c20737.tar.xz | |
The menu and WPS buttons now work in the plugin and font browsers too
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12534 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/tree.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/apps/tree.c b/apps/tree.c index f830e3e..1f3b6ad 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -700,21 +700,11 @@ int dirbrowse() #endif break; /* case ACTION_TREE_STOP: */ case ACTION_STD_MENU: - /* don't enter menu from plugin browser */ - if (*tc.dirfilter < NUM_FILTER_MODES) - { - return GO_TO_ROOT; - } - else /* use it as a quick exit instead */ - return GO_TO_PREVIOUS; + return GO_TO_ROOT; break; case ACTION_TREE_WPS: - /* don't enter wps from plugin browser etc */ - if (*tc.dirfilter < NUM_FILTER_MODES) - { - return GO_TO_PREVIOUS_MUSIC; - } + return GO_TO_PREVIOUS_MUSIC; break; #ifdef HAVE_QUICKSCREEN case ACTION_STD_QUICKSCREEN: |