summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorNicolas Pennequin <nicolas.pennequin@free.fr>2007-09-28 19:47:28 +0000
committerNicolas Pennequin <nicolas.pennequin@free.fr>2007-09-28 19:47:28 +0000
commit7eedcb49d91e9cf0f61c3d5e96ff23489756120c (patch)
tree14f9f27ce0d53ad04beb3ec70d6de9546068fcfc /apps
parentd648c0d1922acbfd9d5b19fba911bc3a9d9e1a7f (diff)
downloadrockbox-7eedcb49d91e9cf0f61c3d5e96ff23489756120c.tar.gz
rockbox-7eedcb49d91e9cf0f61c3d5e96ff23489756120c.zip
Fix buggy gradient display when a coloured file is selected in the browser. Thanks to smably for the report.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14891 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/list.c b/apps/gui/list.c
index aca0105967..107ce5a71a 100644
--- a/apps/gui/list.c
+++ b/apps/gui/list.c
@@ -408,7 +408,7 @@ static void gui_list_draw_smart(struct gui_list *gui_list)
else if (global_settings.cursor_style == 3)
{
/* Display gradient line selector */
- style |= STYLE_GRADIENT;
+ style = STYLE_GRADIENT;
/* Make the lcd driver know how many lines the gradient should
cover and only draw it for the first selected item. */