summaryrefslogtreecommitdiff
path: root/apps/gui/wps.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/wps.c')
-rw-r--r--apps/gui/wps.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/gui/wps.c b/apps/gui/wps.c
index 846c952baf..78ab8dc8dd 100644
--- a/apps/gui/wps.c
+++ b/apps/gui/wps.c
@@ -836,7 +836,12 @@ long gui_wps_show(void)
836 case ACTION_WPS_QUICKSCREEN: 836 case ACTION_WPS_QUICKSCREEN:
837 { 837 {
838 gwps_leave_wps(); 838 gwps_leave_wps();
839 if (quick_screen_quick(button)) 839 if (global_settings.shortcuts_replaces_qs)
840 {
841 global_status.last_screen = GO_TO_SHORTCUTMENU;
842 return quick_screen_quick(button);
843 }
844 else if (quick_screen_quick(button) > 0)
840 return GO_TO_ROOT; 845 return GO_TO_ROOT;
841 restore = true; 846 restore = true;
842 } 847 }