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)
downloadrockbox-f348d921b6abc7d164fa867939f55673bc6d102f.tar.gz
rockbox-f348d921b6abc7d164fa867939f55673bc6d102f.zip
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)
839 if (global_settings.shortcuts_replaces_qs) 839 if (global_settings.shortcuts_replaces_qs)
840 { 840 {
841 global_status.last_screen = GO_TO_SHORTCUTMENU; 841 global_status.last_screen = GO_TO_SHORTCUTMENU;
842 return quick_screen_quick(button); 842 int ret = quick_screen_quick(button);
843 return (ret == GO_TO_PREVIOUS ? GO_TO_WPS : ret);
843 } 844 }
844 else if (quick_screen_quick(button) > 0) 845 else if (quick_screen_quick(button) > 0)
845 return GO_TO_ROOT; 846 return GO_TO_ROOT;