Skip to content
Snippets Groups Projects
Commit 90aadcb7 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'dd_msg_reader_list_select_msg_move_to_next_refresh_fix' into 'master'

DDMsgReader: Screen refresh fix for selecting messages when automatically moving to the next message at the menu's last row on the screen

See merge request !481
parents 5ff13620 b82fb0b6
No related branches found
No related tags found
1 merge request!481DDMsgReader: Screen refresh fix for selecting messages when automatically moving to the next message at the menu's last row on the screen
......@@ -4343,8 +4343,6 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard)
else if (lastUserInputUpper == " ")
{
this.ToggleSelectedMessage(this.subBoardCode, this.lightbarListSelectedMsgIdx);
// TODO: Option to go to the next message after toggling
// New
var topItemIdxBackup = msgListMenu.topItemIdx;
if (this.userSettings.selectInMsgListMovesToNext && msgListMenu.selectedItemIdx < msgListMenu.NumItems())
{
......@@ -4361,10 +4359,6 @@ function DigDistMsgReader_ListMessages_Lightbar(pAllowChgSubBoard)
// check character column in the next iteration
if (msgListMenu.topItemIdx == topItemIdxBackup)
msgListMenu.nextDrawOnlyItemSubstr = { start: this.MSGNUM_LEN+1, end: this.MSGNUM_LEN+2 };
// End New
// Have the menu draw only the check character column in the
// next iteration
msgListMenu.nextDrawOnlyItemSubstr = { start: this.MSGNUM_LEN+1, end: this.MSGNUM_LEN+2 };
}
// Ctrl-A: Select/de-select all messages
else if (lastUserInputUpper == CTRL_A)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment