diff options
| author | Teruaki Kawashima <teru@rockbox.org> | 2010-10-26 12:19:39 +0000 |
|---|---|---|
| committer | Teruaki Kawashima <teru@rockbox.org> | 2010-10-26 12:19:39 +0000 |
| commit | a900a29091deb5ac24abf70bed6292c9eb080fcf (patch) | |
| tree | 4189c6df1f93c16e8d3a3a2bd5e1cc30855edc50 /apps/plugins | |
| parent | c2f4e03b9ecfe44e9aeefcdd2d23c308407ecb56 (diff) | |
| download | rockbox-a900a29091deb5ac24abf70bed6292c9eb080fcf.zip rockbox-a900a29091deb5ac24abf70bed6292c9eb080fcf.tar.gz rockbox-a900a29091deb5ac24abf70bed6292c9eb080fcf.tar.bz2 rockbox-a900a29091deb5ac24abf70bed6292c9eb080fcf.tar.xz | |
fix that disktidy plugin and shopper plugin is not usable when Show Icons setting is turned off.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28362 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 1e6c153..df0076f 100644 --- a/apps/plugins/disktidy.c +++ b/apps/plugins/disktidy.c @@ -496,7 +496,6 @@ enum tidy_return tidy_lcd_menu(void) case 1: { - bool show_icons = rb->global_settings->show_icons; struct simplelist_info list; rb->simplelist_info_init(&list, "Files to Clean", tidy_type_count, NULL); @@ -504,7 +503,6 @@ enum tidy_return tidy_lcd_menu(void) list.get_name = get_name; list.action_callback = list_action_callback; rb->simplelist_show_list(&list); - rb->global_settings->show_icons = show_icons; } break; |