summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-06-15 13:12:26 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-06-15 13:12:26 +0000
commit5c416ae8557897a72b32707091c6e051ee1a6e23 (patch)
tree71401832a862b3f2cdee05186eed16e5a330e147
parent16714539922fb8828180ff605df3586f3eab97c3 (diff)
downloadrockbox-5c416ae8557897a72b32707091c6e051ee1a6e23.tar.gz
rockbox-5c416ae8557897a72b32707091c6e051ee1a6e23.zip
"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
-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 {