summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/skin_engine/skin_parser.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_parser.c b/apps/gui/skin_engine/skin_parser.c
index d89ca8b534..6021f0647c 100644
--- a/apps/gui/skin_engine/skin_parser.c
+++ b/apps/gui/skin_engine/skin_parser.c
@@ -615,7 +615,8 @@ static int parse_viewporttextstyle(struct skin_element *element,
615 if (element->params_count < 2 || 615 if (element->params_count < 2 ||
616 !parse_color(curr_screen, get_param_text(element, 1), &colour)) 616 !parse_color(curr_screen, get_param_text(element, 1), &colour))
617 return 1; 617 return 1;
618 line->style = STYLE_COLORED; 618 /* STYLE_COLORED is only a modifier and can't be used on its own */
619 line->style = STYLE_COLORED | STYLE_DEFAULT;
619 line->text_color = colour; 620 line->text_color = colour;
620 } 621 }
621#ifdef HAVE_LCD_COLOR 622#ifdef HAVE_LCD_COLOR