diff --git a/apps/gui/list.c b/apps/gui/list.c index 3cdd6cbbc4..436038e5c2 100644 --- a/apps/gui/list.c +++ b/apps/gui/list.c @@ -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);