Fix a flaw in RTTY auto-sequencing.

This commit is contained in:
Joe Taylor 2018-07-31 12:17:14 -04:00
parent f3b89c4dca
commit 396cf98c0b
1 changed files with 5 additions and 1 deletions

View File

@ -4228,7 +4228,8 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
}
int n=w34.toInt();
if(n>=529 and n<=599 and m_nContest!=RTTY) {
bool bRTTY = (n>=529 and n<=599);
if(bRTTY and m_nContest!=RTTY) {
// ### Should be in ARRL RTTY Roundup mode ??? ###
MessageBox::information_message (this, tr ("Should you switch to ARRL RTTY Roundup mode?"));
}
@ -4258,6 +4259,9 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
m_QSOProgress=ROGER_REPORT;
}
}
} else if(m_nContest==RTTY and bRTTY) {
gen_msg=setTxMsg(3);
m_QSOProgress=ROGER_REPORT;
} else if(m_nContest==FIELD_DAY and bFieldDay_w34) {
gen_msg=setTxMsg(3);
m_QSOProgress=ROGER_REPORT;