From ffb7350ff2236624b6794fb463e1bca21b729a5d Mon Sep 17 00:00:00 2001
From: "Rob Swindell (on Debian Linux)" <rob@synchro.net>
Date: Sat, 23 Sep 2023 14:07:27 -0700
Subject: [PATCH] Move the 'Q' hotspot to just *after* the display of the
 prompt

Fixes issue #645
---
 exec/user_settings.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exec/user_settings.js b/exec/user_settings.js
index e7705db3a2..2e9bd87fcc 100644
--- a/exec/user_settings.js
+++ b/exec/user_settings.js
@@ -122,8 +122,8 @@ function display_menu(thisuser) {
 		,thisuser.settings & USER_AUTOHANG ? "(Auto-Hangup)" : ''));
 	console.add_hotspot('W');
 	console.putmsg(bbs.text(UserDefaultsPassword));
-	console.add_hotspot('Q');
 	console.putmsg(bbs.text(UserDefaultsWhich));
+	console.add_hotspot('Q');
 }
 
 var cfglib = load({}, "cfglib.js");
-- 
GitLab