diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-05-22 03:39:59 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-05-22 03:39:59 +0000 |
commit | 5348f3d94985de1d1e985a7a631fd2c7d0dcf1f3 (patch) | |
tree | 0cd8f0ebd1a9fa263be26e07fcc09f3cc4ac076d /apps/plugins | |
parent | 1692d9b9964b018e2e1c48a94fc572a546d7e400 (diff) |
fix FS#9023 by forcing the icons in the file to clean seelction screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17601 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/disktidy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugins/disktidy.c b/apps/plugins/disktidy.c index bb4c45e977..6dc6833731 100644 --- a/apps/plugins/disktidy.c +++ b/apps/plugins/disktidy.c @@ -455,12 +455,15 @@ int tidy_lcd_menu(void) case 1: { + bool show_icons = rb->global_settings->show_icons; struct simplelist_info list; + rb->global_settings->show_icons = true; /* force the icons so its readable */ rb->simplelist_info_init(&list, "Files to Clean", tidy_type_count, NULL); list.get_icon = get_icon; list.get_name = get_name; list.action_callback = list_action_callback; rb->simplelist_show_list(&list); + rb->global_settings->show_icons = show_icons; } break; |