diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-01-01 13:12:37 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-01-01 13:12:37 +0000 |
commit | 36531c7471374260f8c987380f228f32688f4d20 (patch) | |
tree | 93ce2a3ae86be2e65e0073d84213d831b4d02f53 /apps | |
parent | a02702ce1dd8a75757a294ce9a5a531b30dc466e (diff) |
bah, the filetree does the same spindown handling as the WPS so fix it there also
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19632 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 6e05cb5eb0..3c3189f85a 100644 --- a/apps/tree.c +++ b/apps/tree.c @@ -821,7 +821,7 @@ static int dirbrowse() } if (start_wps) return GO_TO_WPS; - if (button) + if (button && !IS_SYSEVENT(button)) { storage_spin(); } |