summaryrefslogtreecommitdiff
path: root/apps/shortcuts.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/shortcuts.c')
-rw-r--r--apps/shortcuts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c
index 3992068807..8ded75c1f2 100644
--- a/apps/shortcuts.c
+++ b/apps/shortcuts.c
@@ -357,7 +357,8 @@ int do_shortcut_menu(void *ignored)
357 simplelist_info_init(&list, P2STR(ID2P(LANG_SHORTCUTS)), shortcut_count, NULL); 357 simplelist_info_init(&list, P2STR(ID2P(LANG_SHORTCUTS)), shortcut_count, NULL);
358 list.get_name = shortcut_menu_get_name; 358 list.get_name = shortcut_menu_get_name;
359 list.action_callback = shortcut_menu_get_action; 359 list.action_callback = shortcut_menu_get_action;
360 list.get_icon = shortcut_menu_get_icon; 360 if (global_settings.show_icons)
361 list.get_icon = shortcut_menu_get_icon;
361 list.title_icon = Icon_Bookmark; 362 list.title_icon = Icon_Bookmark;
362 363
363 push_current_activity(ACTIVITY_SHORTCUTSMENU); 364 push_current_activity(ACTIVITY_SHORTCUTSMENU);