summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/shortcuts.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c
index db60d40db2..d7868461a7 100644
--- a/apps/shortcuts.c
+++ b/apps/shortcuts.c
@@ -418,6 +418,11 @@ int do_shortcut_menu(void *ignored)
418 if (global_settings.talk_menu) 418 if (global_settings.talk_menu)
419 list.get_talk = shortcut_menu_speak_item; 419 list.get_talk = shortcut_menu_speak_item;
420 420
421 if (shortcut_count == 0)
422 {
423 splash(HZ, str(LANG_NO_FILES));
424 return GO_TO_PREVIOUS;
425 }
421 push_current_activity(ACTIVITY_SHORTCUTSMENU); 426 push_current_activity(ACTIVITY_SHORTCUTSMENU);
422 427
423 while (done == GO_TO_PREVIOUS) 428 while (done == GO_TO_PREVIOUS)