1
0
Fork 0
forked from len0rd/rockbox

And fix the bug which I was actually being pinged about...

dont show the selection marker if its not supposed to be shown (i.e the debug lists)


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17205 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2008-04-21 13:44:52 +00:00
parent fa64dbb525
commit f8181966e6

View file

@ -202,7 +202,7 @@ void list_draw(struct screen *display, struct viewport *parent,
}
#endif
if(i >= list->selected_item &&
i < list->selected_item + list->selected_size)
i < list->selected_item + list->selected_size && list->show_selection_marker)
{/* The selected item must be displayed scrolling */
if (global_settings.cursor_style == 1
#ifdef HAVE_REMOTE_LCD