summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2012-01-28 23:37:23 +1100
committerJonathan Gordon <rockbox@jdgordon.info>2012-01-28 23:38:16 +1100
commita65d241dd01bc28a0ad732dda6a45278a0409b3c (patch)
treeeb086f89fdd09d403515c1e3a00897b811870e7f /apps/gui
parentbebfd7f26151550ea45cd7fcbc9fbfc6948d59cc (diff)
downloadrockbox-a65d241dd01bc28a0ad732dda6a45278a0409b3c.tar.gz
rockbox-a65d241dd01bc28a0ad732dda6a45278a0409b3c.zip
skin touchregions: change the rwd/ffwd region actions to make it less buggy in the sbs
Change-Id: Ib823860e65909ac227910a16f6caac207b7e22c3
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/skin_engine/skin_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index 95dc11c7d1..befc843891 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1244,7 +1244,6 @@ static const struct touchaction touchactions[] = {
1244 /* generic actions, convert to screen actions on use */ 1244 /* generic actions, convert to screen actions on use */
1245 {"none", ACTION_TOUCHSCREEN_IGNORE},{"lock", ACTION_TOUCH_SOFTLOCK }, 1245 {"none", ACTION_TOUCHSCREEN_IGNORE},{"lock", ACTION_TOUCH_SOFTLOCK },
1246 {"prev", ACTION_STD_PREV }, {"next", ACTION_STD_NEXT }, 1246 {"prev", ACTION_STD_PREV }, {"next", ACTION_STD_NEXT },
1247 {"rwd", ACTION_STD_PREVREPEAT }, {"ffwd", ACTION_STD_NEXTREPEAT },
1248 {"hotkey", ACTION_STD_HOTKEY}, {"select", ACTION_STD_OK }, 1247 {"hotkey", ACTION_STD_HOTKEY}, {"select", ACTION_STD_OK },
1249 {"menu", ACTION_STD_MENU }, {"cancel", ACTION_STD_CANCEL }, 1248 {"menu", ACTION_STD_MENU }, {"cancel", ACTION_STD_CANCEL },
1250 {"contextmenu", ACTION_STD_CONTEXT},{"quickscreen", ACTION_STD_QUICKSCREEN }, 1249 {"contextmenu", ACTION_STD_CONTEXT},{"quickscreen", ACTION_STD_QUICKSCREEN },
@@ -1260,6 +1259,7 @@ static const struct touchaction touchactions[] = {
1260 {"setting_set", ACTION_SETTINGS_SET}, 1259 {"setting_set", ACTION_SETTINGS_SET},
1261 1260
1262 /* WPS specific actions */ 1261 /* WPS specific actions */
1262 {"rwd", ACTION_WPS_SEEKBACK }, {"ffwd", ACTION_WPS_SEEKFWD },
1263 {"wps_prev", ACTION_WPS_SKIPPREV }, {"wps_next", ACTION_WPS_SKIPNEXT }, 1263 {"wps_prev", ACTION_WPS_SKIPPREV }, {"wps_next", ACTION_WPS_SKIPNEXT },
1264 {"browse", ACTION_WPS_BROWSE }, 1264 {"browse", ACTION_WPS_BROWSE },
1265 {"play", ACTION_WPS_PLAY }, {"stop", ACTION_WPS_STOP }, 1265 {"play", ACTION_WPS_PLAY }, {"stop", ACTION_WPS_STOP },