diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2009-12-16 08:36:46 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2009-12-16 08:36:46 +0000 |
| commit | e425371e10c5c18a1996fe7adfb4184a09ebbd8a (patch) | |
| tree | 80bee7b66110bd31734897a96fe336ea50336923 /apps/plugins | |
| parent | b9aabcb1a40aa2705d720e332bef7c390fb0587a (diff) | |
| download | rockbox-e425371e10c5c18a1996fe7adfb4184a09ebbd8a.zip rockbox-e425371e10c5c18a1996fe7adfb4184a09ebbd8a.tar.gz rockbox-e425371e10c5c18a1996fe7adfb4184a09ebbd8a.tar.bz2 rockbox-e425371e10c5c18a1996fe7adfb4184a09ebbd8a.tar.xz | |
Fix FS#10289 - screens showing a list need to check the show_icons setting before setting the callback. the List will now always draw icons if a callback is set (like its always done for voice)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24022 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/disktidy.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/plugins/disktidy.c b/apps/plugins/disktidy.c index 84cc220..ee39972 100644 --- a/apps/plugins/disktidy.c +++ b/apps/plugins/disktidy.c @@ -458,8 +458,6 @@ enum tidy_return tidy_lcd_menu(void) { bool show_icons = rb->global_settings->show_icons; struct simplelist_info list; - /* force the icons so its readable */ - rb->global_settings->show_icons = true; rb->simplelist_info_init(&list, "Files to Clean", tidy_type_count, NULL); list.get_icon = get_icon; |