mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-22 20:18:35 -04:00
Fix a flaw in RTTY auto-sequencing.
This commit is contained in:
parent
f3b89c4dca
commit
396cf98c0b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user