diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-06-15 13:12:26 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-06-15 13:12:26 +0000 |
commit | 5c416ae8557897a72b32707091c6e051ee1a6e23 (patch) | |
tree | 71401832a862b3f2cdee05186eed16e5a330e147 /apps/gui | |
parent | 16714539922fb8828180ff605df3586f3eab97c3 (diff) |
"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
Diffstat (limited to 'apps/gui')
-rw-r--r-- | apps/gui/bitmap/list.c | 4 |
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) { |