forked from len0rd/rockbox
plugins: db_folder_select, disktidy, main_menu_config: Fix selection dialog with Show Icons set to No
Temporarily enable icons for required lists. Probably not a proper fix but a simple workaround. Fixes FS#13574 Change-Id: I011a80e2a9f03019927b32e92cd5a35275c051e1
This commit is contained in:
parent
b3caf32f78
commit
08bd5cdd3d
3 changed files with 9 additions and 1 deletions
|
@ -686,7 +686,10 @@ static enum plugin_status tidy_lcd_menu(void)
|
|||
list.get_icon = get_icon;
|
||||
list.get_name = get_name;
|
||||
list.action_callback = list_action_callback;
|
||||
bool show_icons = rb->global_settings->show_icons;
|
||||
rb->global_settings->show_icons = true;
|
||||
rb->simplelist_show_list(&list);
|
||||
rb->global_settings->show_icons = show_icons;
|
||||
break;
|
||||
case 2:
|
||||
disktidy_status = display_run_stats();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue