summaryrefslogtreecommitdiff
path: root/apps/gui/wps.c
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2021-03-09 08:21:20 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2021-03-09 13:26:56 +0000
commitf348d921b6abc7d164fa867939f55673bc6d102f (patch)
treea95ac822b0fed4a26bef9b7aa211e4b3238a82bd /apps/gui/wps.c
parentd0ab6b24dce36ab52b39e18a34a0177bed9c40ee (diff)
Shortcuts Menu -- Update2
make shortcuts menu drop back into WPS on exit different icons for plugins and files versus folders Change-Id: I1b590c223b63a6b6598c33e767738daaea1c8ad0
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r--apps/gui/wps.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 78ab8dc8dd..b42e386a91 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -839,7 +839,8 @@ long gui_wps_show(void)
if (global_settings.shortcuts_replaces_qs)
{
global_status.last_screen = GO_TO_SHORTCUTMENU;
- return quick_screen_quick(button);
+ int ret = quick_screen_quick(button);
+ return (ret == GO_TO_PREVIOUS ? GO_TO_WPS : ret);
}
else if (quick_screen_quick(button) > 0)
return GO_TO_ROOT;