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:
parent
1c36a660ea
commit
e247230e0d
1 changed files with 3 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue