summaryrefslogtreecommitdiff
path: root/apps/shortcuts.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/shortcuts.c')
-rw-r--r--apps/shortcuts.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c
index 70f140d42e..5322447b46 100644
--- a/apps/shortcuts.c
+++ b/apps/shortcuts.c
@@ -425,6 +425,8 @@ static int shortcut_menu_get_action(int action, struct gui_synclist *lists)
425 (void)lists; 425 (void)lists;
426 if (action == ACTION_STD_OK) 426 if (action == ACTION_STD_OK)
427 return ACTION_STD_CANCEL; 427 return ACTION_STD_CANCEL;
428 else if (action == ACTION_STD_QUICKSCREEN && action != ACTION_STD_CONTEXT)
429 return ACTION_STD_CANCEL;
428 else if (action == ACTION_STD_CONTEXT) 430 else if (action == ACTION_STD_CONTEXT)
429 { 431 {
430 int selection = gui_synclist_get_sel_pos(lists); 432 int selection = gui_synclist_get_sel_pos(lists);
@@ -459,7 +461,7 @@ static enum themable_icons shortcut_menu_get_icon(int selected_item, void * data
459 case SHORTCUT_FILE: 461 case SHORTCUT_FILE:
460 return filetype_get_icon(filetype_get_attr(sc->u.path)); 462 return filetype_get_icon(filetype_get_attr(sc->u.path));
461 case SHORTCUT_BROWSER: 463 case SHORTCUT_BROWSER:
462 return Icon_Folder; 464 return Icon_Plugin;
463 case SHORTCUT_SETTING: 465 case SHORTCUT_SETTING:
464 return Icon_Menu_setting; 466 return Icon_Menu_setting;
465 case SHORTCUT_DEBUGITEM: 467 case SHORTCUT_DEBUGITEM: