From bfb0ea1fbfdb644b032b0daa68f76be4d1e3ccc0 Mon Sep 17 00:00:00 2001
From: Eric Oulashin <eric.oulashin@gmail.com>
Date: Sat, 20 Jan 2024 22:26:20 -0800
Subject: [PATCH] DDMsgReader: Changed rescan hotkey for the indexed menu to
 Ctrl-R, since Ctrl-S won't work for Wyse terminals (Ctrl-S is for xon/xoff
 toggling and can't be changed)

---
 xtrn/DDMsgReader/DDMsgReader.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/xtrn/DDMsgReader/DDMsgReader.js b/xtrn/DDMsgReader/DDMsgReader.js
index a23f88160b..2823a3fba5 100644
--- a/xtrn/DDMsgReader/DDMsgReader.js
+++ b/xtrn/DDMsgReader/DDMsgReader.js
@@ -1151,7 +1151,7 @@ function DigDistMsgReader(pSubBoardCode, pScriptArgs)
 		markAllRead: "R",
 		help: "?",
 		userSettings: CTRL_U,
-		reScanSubBoards: CTRL_S
+		reScanSubBoards: CTRL_R
 	};
 
 	// Message status characters for the message list
@@ -15643,7 +15643,7 @@ function DigDistMsgReader_DoIndexedMode(pScanScope, pNewscanOnly)
 				else
 					this.DoUserSettings_Traditional();
 			}
-			// CTRL-S: Re-scan sub-boards
+			// CTRL-R: Re-scan sub-boards
 			else if (indexRetObj.lastUserInput == this.indexedModeMenuKeys.reScanSubBoards)
 			{
 				drawMenu = true;
@@ -16235,7 +16235,7 @@ function DigDistMsgReader_ShowIndexedListHelp()
 		printf(formatStr, "R", "Mark all read in the sub-board");
 		printf(formatStr, "M", "Show message list for the sub-board");
 		printf(formatStr, "Ctrl-U", "User settings");
-		printf(formatStr, "Ctrl-S", "Re-scan sub-boards");
+		printf(formatStr, "Ctrl-R", "Re-scan sub-boards");
 		printf(formatStr, "Q", "Quit");
 		//printf(formatStr, "?", "Show this help screen");
 	}
-- 
GitLab