summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/skin_parser.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/skin_engine/skin_parser.c')
-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 4158165f53..9a63312147 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,
1138 region->action = ACTION_TOUCH_VOLUME; 1138 region->action = ACTION_TOUCH_VOLUME;
1139 else 1139 else
1140 { 1140 {
1141 if (*action == '&') 1141 if (*action == '*')
1142 { 1142 {
1143 action++; 1143 action++;
1144 region->press_length = LONG_PRESS; 1144 region->press_length = LONG_PRESS;
1145 } 1145 }
1146 else if(*action == '*') 1146 else if(*action == '&')
1147 { 1147 {
1148 action++; 1148 action++;
1149 region->press_length = REPEAT; 1149 region->press_length = REPEAT;