summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-17 12:46:21 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-08-17 12:46:21 +0000
commit8d013f55572436a58b633854c3ae50e4b4dff860 (patch)
tree5271ce67cc7503b8ec77f4032427d53e7d16498b /apps/gui
parent950534b13c8909bea08c6f92c0b36d921355749c (diff)
downloadrockbox-8d013f55572436a58b633854c3ae50e4b4dff860.zip
rockbox-8d013f55572436a58b633854c3ae50e4b4dff860.tar.gz
rockbox-8d013f55572436a58b633854c3ae50e4b4dff860.tar.bz2
rockbox-8d013f55572436a58b633854c3ae50e4b4dff860.tar.xz
Skin engine: add "pitch" action to touch regions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22375 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/skin_engine/skin_parser.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index a06cb77..d2b8fdc 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1099,7 +1099,7 @@ static struct touchaction touchactions[] = {
{"menu", ACTION_WPS_MENU }, {"browse", ACTION_WPS_BROWSE },
{"shuffle", ACTION_TOUCH_SHUFFLE }, {"repmode", ACTION_TOUCH_REPMODE },
{"quickscreen", ACTION_WPS_QUICKSCREEN },{"contextmenu", ACTION_WPS_CONTEXT },
- {"playlist", ACTION_WPS_VIEW_PLAYLIST },
+ {"playlist", ACTION_WPS_VIEW_PLAYLIST }, {"pitch", ACTION_WPS_PITCHSCREEN},
};
static int parse_touchregion(const char *wps_bufptr,
struct wps_token *token, struct wps_data *wps_data)
@@ -1128,6 +1128,8 @@ static int parse_touchregion(const char *wps_bufptr,
* repmode - cycle the repeat mode
* quickscreen - go into the quickscreen
* contextmenu - open the context menu
+ * playlist - go into the playlist
+ * pitch - go into the pitchscreen
*/