summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-10-10 04:17:34 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-10-10 04:17:34 +0000
commita7b1f7577b06d8e2576fc8c91dca754404ba314b (patch)
treeaa73176ba4ab03931eb967ebfb969436a1afe656 /apps
parent3f7b780b54d76f5462c8c4f8744fe80363c77507 (diff)
downloadrockbox-a7b1f7577b06d8e2576fc8c91dca754404ba314b.zip
rockbox-a7b1f7577b06d8e2576fc8c91dca754404ba314b.tar.gz
rockbox-a7b1f7577b06d8e2576fc8c91dca754404ba314b.tar.bz2
rockbox-a7b1f7577b06d8e2576fc8c91dca754404ba314b.tar.xz
Add "resumeplayback" touchscreen button action which returns you to the previous music screen (WPS or FM) from most of the lists (browsers and menus)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28223 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/skin_engine/skin_parser.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index 1cdecff..50dad6f 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -829,6 +829,9 @@ static const struct touchaction touchactions[] = {
{"hotkey", ACTION_STD_HOTKEY}, {"select", ACTION_STD_OK },
{"menu", ACTION_STD_MENU }, {"cancel", ACTION_STD_CANCEL },
{"contextmenu", ACTION_STD_CONTEXT},{"quickscreen", ACTION_STD_QUICKSCREEN },
+
+ /* list/tree actions */
+ { "resumeplayback", ACTION_TREE_WPS}, /* returns to previous music, WPS/FM */
/* not really WPS specific, but no equivilant ACTION_STD_* */
{"voldown", ACTION_WPS_VOLDOWN}, {"volup", ACTION_WPS_VOLUP},