summaryrefslogtreecommitdiff
path: root/apps/gui
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui')
-rw-r--r--apps/gui/bitmap/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/bitmap/list.c b/apps/gui/bitmap/list.c
index 0d1d944dee..1090cffd9b 100644
--- a/apps/gui/bitmap/list.c
+++ b/apps/gui/bitmap/list.c
@@ -212,13 +212,13 @@ void list_draw(struct screen *display, struct viewport *parent,
)
{
/* Display inverted-line-style */
- list_text[display->screen_type].drawmode |= STYLE_INVERT;
+ list_text[display->screen_type].drawmode = STYLE_INVERT;
}
#ifdef HAVE_LCD_COLOR
else if (global_settings.cursor_style == 2)
{
/* Display colour line selector */
- list_text[display->screen_type].drawmode |= STYLE_COLORBAR;
+ list_text[display->screen_type].drawmode = STYLE_COLORBAR;
}
else if (global_settings.cursor_style == 3)
{