summaryrefslogtreecommitdiff
path: root/apps/tagtree.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-08-15 12:27:07 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-08-15 12:27:07 +0000
commit224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9 (patch)
treebae2154b272f786983cf8e6de28d33f98f327560 /apps/tagtree.c
parentc0f8b187706364f5e4bda2ac26750d14454c901d (diff)
downloadrockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.tar.gz
rockbox-224c0a13ebb5828b9bc06a9c1c23ae17f0ac19f9.zip
Finally, the new button action system is here, thanks to Jonathan Gordon. Some button mappings have changed and other things may break. Comments should go to the forum, http://forums.rockbox.org/index.php?topic=5829.0 or the mailing list.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10582 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/tagtree.c')
-rw-r--r--apps/tagtree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/tagtree.c b/apps/tagtree.c
index 0727b8ea45..405a1bbf34 100644
--- a/apps/tagtree.c
+++ b/apps/tagtree.c
@@ -29,6 +29,7 @@
29#include "splash.h" 29#include "splash.h"
30#include "icons.h" 30#include "icons.h"
31#include "tree.h" 31#include "tree.h"
32#include "action.h"
32#include "settings.h" 33#include "settings.h"
33#include "tagcache.h" 34#include "tagcache.h"
34#include "tagtree.h" 35#include "tagtree.h"
@@ -539,7 +540,7 @@ bool show_search_progress(bool init, int count)
539 str(LANG_OFF_ABORT) 540 str(LANG_OFF_ABORT)
540#endif 541#endif
541 ); 542 );
542 if (SETTINGS_CANCEL == button_get(false)) 543 if (action_userabort(TIMEOUT_NOBLOCK))
543 return false; 544 return false;
544 last_tick = current_tick; 545 last_tick = current_tick;
545 yield(); 546 yield();