summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/gui/skin_engine/skin_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index 4158165..9a63312 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1138,12 +1138,12 @@ static int parse_touchregion(struct skin_element *element,
region->action = ACTION_TOUCH_VOLUME;
else
{
- if (*action == '&')
+ if (*action == '*')
{
action++;
region->press_length = LONG_PRESS;
}
- else if(*action == '*')
+ else if(*action == '&')
{
action++;
region->press_length = REPEAT;