diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c index 9a63312147..df08fe6115 100644 --- a/apps/gui/skin_engine/skin_parser.c +++ b/apps/gui/skin_engine/skin_parser.c @@ -1026,7 +1026,8 @@ static int parse_lasttouch(struct skin_element *element, if (element->params[i].type == STRING) data->region = skin_find_item(element->params[i].data.text, SKIN_FIND_TOUCHREGION, wps_data); - else if (element->params[i].type == INTEGER) + else if (element->params[i].type == INTEGER || + element->params[i].type == DECIMAL) data->timeout = element->params[i].data.number; }