diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2012-01-19 19:35:19 +1100 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2012-01-23 07:42:28 +1100 |
| commit | 8a3af263641dfa6e6bd8f9dfe06654c4e27b094e (patch) | |
| tree | 3b4100bcd7cb0bd457041c8933a928ed87c30614 /apps/gui/skin_engine | |
| parent | 7efbd632c2ee76e6868635ecfa09ea96b25c3a63 (diff) | |
| download | rockbox-8a3af263641dfa6e6bd8f9dfe06654c4e27b094e.zip rockbox-8a3af263641dfa6e6bd8f9dfe06654c4e27b094e.tar.gz rockbox-8a3af263641dfa6e6bd8f9dfe06654c4e27b094e.tar.bz2 rockbox-8a3af263641dfa6e6bd8f9dfe06654c4e27b094e.tar.xz | |
skin touchregions: fix the 'none' region firing when it shouldnt.
Change the none action return value so the various action layers don't get confused by ACTION_TOUCHSCREEN return codes which shouldn't be happening (i.e when a long press region overlaps a short press region whihc has the none action)
Change-Id: I63db2c0b49597ada2c5ebd0ef98e99aeef4f522a
Diffstat (limited to 'apps/gui/skin_engine')
| -rw-r--r-- | apps/gui/skin_engine/skin_parser.c | 2 |
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 0118977..95dc11c 100644 --- a/apps/gui/skin_engine/skin_parser.c +++ b/apps/gui/skin_engine/skin_parser.c @@ -1242,7 +1242,7 @@ static int parse_lasttouch(struct skin_element *element, struct touchaction {const char* s; int action;}; static const struct touchaction touchactions[] = { /* generic actions, convert to screen actions on use */ - {"none", ACTION_TOUCHSCREEN}, {"lock", ACTION_TOUCH_SOFTLOCK }, + {"none", ACTION_TOUCHSCREEN_IGNORE},{"lock", ACTION_TOUCH_SOFTLOCK }, {"prev", ACTION_STD_PREV }, {"next", ACTION_STD_NEXT }, {"rwd", ACTION_STD_PREVREPEAT }, {"ffwd", ACTION_STD_NEXTREPEAT }, {"hotkey", ACTION_STD_HOTKEY}, {"select", ACTION_STD_OK }, |