diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2004-09-19 22:54:24 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2004-09-19 22:54:24 +0000 |
| commit | 1c87a1f62a2e0ee3a7b0946b2b385c154f17c23c (patch) | |
| tree | 342f2aa12d3dd8795cbcd685f9ab15db43dac4a0 /apps | |
| parent | 6dd2dd093b43299a264d74ef6a99bf0d94e60b6f (diff) | |
| download | rockbox-1c87a1f62a2e0ee3a7b0946b2b385c154f17c23c.zip rockbox-1c87a1f62a2e0ee3a7b0946b2b385c154f17c23c.tar.gz rockbox-1c87a1f62a2e0ee3a7b0946b2b385c154f17c23c.tar.bz2 rockbox-1c87a1f62a2e0ee3a7b0946b2b385c154f17c23c.tar.xz | |
On+play menu now activates on play release
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5094 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/tree.c b/apps/tree.c index a83346b..44ade04 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -814,12 +814,12 @@ static bool handle_shift(int *ds, int *dc, int numentries, break; - case TREE_RUN: + case TREE_RUN | BUTTON_REL: #ifdef TREE_RC_PLAY case TREE_RC_RUN: #endif #ifdef TREE_SHIFT - case TREE_SHIFT | TREE_RUN: + case TREE_SHIFT | TREE_RUN | BUTTON_REL: #endif { int onplay_result; |