diff options
author | Kevin Ferrare <kevin@rockbox.org> | 2005-10-31 18:38:48 +0000 |
---|---|---|
committer | Kevin Ferrare <kevin@rockbox.org> | 2005-10-31 18:38:48 +0000 |
commit | b83dc3861e5552a802767f37cb97d6b41c9f01cc (patch) | |
tree | dcfe714d3aa403127617e7668deacb1acc795e6a /apps/tree.c | |
parent | 65fe5f144d939533e29f0e07b99915a7d997d448 (diff) |
Corrected a small bug about status bar not refreshing the clock in menus on archos, added some H1x0 remote key bindings (thanks Stephan Wezel for the patch ! )
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7698 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tree.c')
-rw-r--r-- | apps/tree.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c index 46981ed452..4134c942d8 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -683,7 +683,11 @@ static bool dirbrowse(void) case TREE_RC_MENU: #endif #ifdef TREE_MENU_PRE - if (lastbutton != TREE_MENU_PRE) + if (lastbutton != TREE_MENU_PRE +#ifdef TREE_RC_MENU_PRE + && lastbutton != TREE_RC_MENU_PRE +#endif + ) break; #endif /* don't enter menu from plugin browser */ |