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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index 932c3baf6b..158f2eb7b7 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -1211,6 +1211,7 @@ static int parse_progressbar(const char *wps_bufptr,
1211 pb->y = -line_num - 1; /* Will be computed during the rendering */ 1211 pb->y = -line_num - 1; /* Will be computed during the rendering */
1212 if (token->type == WPS_TOKEN_VOLUME || token->type == WPS_TOKEN_BATTERY_PERCENT) 1212 if (token->type == WPS_TOKEN_VOLUME || token->type == WPS_TOKEN_BATTERY_PERCENT)
1213 return 0; /* dont add it, let the regular token handling do the work */ 1213 return 0; /* dont add it, let the regular token handling do the work */
1214 pb->type = token->type;
1214 add_to_ll_chain(&wps_data->progressbars, item); 1215 add_to_ll_chain(&wps_data->progressbars, item);
1215 return 0; 1216 return 0;
1216 } 1217 }