1
0
Fork 0
forked from len0rd/rockbox

redraw the siplelist more often

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15446 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-11-04 01:04:10 +00:00
parent 1c36a660ea
commit e247230e0d

View file

@ -1298,7 +1298,9 @@ bool simplelist_show_list(struct simplelist_info *info)
}
if (action == ACTION_STD_CANCEL)
break;
else if ((action == ACTION_REDRAW) || (old_line_count != simplelist_line_count))
else if ((action == ACTION_NONE) ||
(action == ACTION_REDRAW) ||
(old_line_count != simplelist_line_count))
{
if (info->get_name == NULL)
gui_synclist_set_nb_items(&lists, simplelist_line_count*info->selection_size);