summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
212 ) 212 )
213 { 213 {
214 /* Display inverted-line-style */ 214 /* Display inverted-line-style */
215 list_text[display->screen_type].drawmode |= STYLE_INVERT; 215 list_text[display->screen_type].drawmode = STYLE_INVERT;
216 } 216 }
217#ifdef HAVE_LCD_COLOR 217#ifdef HAVE_LCD_COLOR
218 else if (global_settings.cursor_style == 2) 218 else if (global_settings.cursor_style == 2)
219 { 219 {
220 /* Display colour line selector */ 220 /* Display colour line selector */
221 list_text[display->screen_type].drawmode |= STYLE_COLORBAR; 221 list_text[display->screen_type].drawmode = STYLE_COLORBAR;
222 } 222 }
223 else if (global_settings.cursor_style == 3) 223 else if (global_settings.cursor_style == 3)
224 { 224 {