From 5c416ae8557897a72b32707091c6e051ee1a6e23 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Sun, 15 Jun 2008 13:12:26 +0000 Subject: "Fix" FS#7887 - the line selector colours would be completly wrong on scrolling lines. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17725 a1c6a512-1295-4272-9138-f99709370657 --- apps/gui/bitmap/list.c | 4 ++-- 1 file 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) { -- cgit v1.2.3