summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
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 7119024c69..ae33e907f0 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1219,6 +1219,7 @@ static struct touchaction touchactions[] = {
1219 {"shuffle", ACTION_TOUCH_SHUFFLE }, {"repmode", ACTION_TOUCH_REPMODE }, 1219 {"shuffle", ACTION_TOUCH_SHUFFLE }, {"repmode", ACTION_TOUCH_REPMODE },
1220 {"quickscreen", ACTION_WPS_QUICKSCREEN },{"contextmenu", ACTION_WPS_CONTEXT }, 1220 {"quickscreen", ACTION_WPS_QUICKSCREEN },{"contextmenu", ACTION_WPS_CONTEXT },
1221 {"playlist", ACTION_WPS_VIEW_PLAYLIST }, {"pitch", ACTION_WPS_PITCHSCREEN}, 1221 {"playlist", ACTION_WPS_VIEW_PLAYLIST }, {"pitch", ACTION_WPS_PITCHSCREEN},
1222 {"voldown", ACTION_WPS_VOLDOWN}, {"volup", ACTION_WPS_VOLUP},
1222}; 1223};
1223static int parse_touchregion(const char *wps_bufptr, 1224static int parse_touchregion(const char *wps_bufptr,
1224 struct wps_token *token, struct wps_data *wps_data) 1225 struct wps_token *token, struct wps_data *wps_data)
@@ -1249,6 +1250,8 @@ static int parse_touchregion(const char *wps_bufptr,
1249 * contextmenu - open the context menu 1250 * contextmenu - open the context menu
1250 * playlist - go into the playlist 1251 * playlist - go into the playlist
1251 * pitch - go into the pitchscreen 1252 * pitch - go into the pitchscreen
1253 * volup - increase volume by one step
1254 * voldown - decrease volume by one step
1252 */ 1255 */
1253 1256
1254 1257