summaryrefslogtreecommitdiff
path: root/apps/filetypes.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r--apps/filetypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 593085cbd4..1bf83c3316 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -505,7 +505,7 @@ int filetype_list_viewers(const char* current_file)
505 simplelist_info_init(&info, str(LANG_ONPLAY_OPEN_WITH), count, &data); 505 simplelist_info_init(&info, str(LANG_ONPLAY_OPEN_WITH), count, &data);
506 info.action_callback = openwith_action_callback; 506 info.action_callback = openwith_action_callback;
507 info.get_name = openwith_get_name; 507 info.get_name = openwith_get_name;
508 info.get_icon = openwith_get_icon; 508 info.get_icon = global_settings.show_icons?openwith_get_icon:NULL;
509 return simplelist_show_list(&info); 509 return simplelist_show_list(&info);
510} 510}
511 511