Skip to content
Snippets Groups Projects
Commit bfb0ea1f authored by Eric Oulashin's avatar Eric Oulashin
Browse files

DDMsgReader: Changed rescan hotkey for the indexed menu to Ctrl-R, since...

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)
parent a6f57ac0
No related branches found
No related tags found
1 merge request!389DDMsgReader: 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)
Pipeline #5362 passed
......@@ -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");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment