diff options
author | William Wilgus <wilgus.william@gmail.com> | 2021-03-08 21:59:04 -0500 |
---|---|---|
committer | William Wilgus <wilgus.william@gmail.com> | 2021-03-08 22:17:41 -0500 |
commit | 13178d23b82ffde13fdbf8e36cfa0358f22e8dc3 (patch) | |
tree | 624d16646b0c4b19d23aa338fae4c19552de3209 /apps/shortcuts.c | |
parent | c9e8d96e77c9ad3e0ff2df3b1afbac77c33fde85 (diff) |
Shortcuts Menu Update
Change Browser shortcut to the plugin icon
drop back into WPS on opx return
allow same action to exit shortcut menu as entered -- might be problematic
Change-Id: Id7013a514c8e8862ee1da44b033d10b7519e9127
Diffstat (limited to 'apps/shortcuts.c')
-rw-r--r-- | apps/shortcuts.c | 4 |
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) (void)lists; if (action == ACTION_STD_OK) return ACTION_STD_CANCEL; + else if (action == ACTION_STD_QUICKSCREEN && action != ACTION_STD_CONTEXT) + return ACTION_STD_CANCEL; else if (action == ACTION_STD_CONTEXT) { 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 case SHORTCUT_FILE: return filetype_get_icon(filetype_get_attr(sc->u.path)); case SHORTCUT_BROWSER: - return Icon_Folder; + return Icon_Plugin; case SHORTCUT_SETTING: return Icon_Menu_setting; case SHORTCUT_DEBUGITEM: |