mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 20:28:42 -05:00
Fix a bug in auto-sequencing with the "TU; " message type.
This commit is contained in:
parent
6884ee5334
commit
1935c8e133
@ -4379,8 +4379,9 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie
|
|||||||
} else {
|
} else {
|
||||||
m_bTUmsg=false;
|
m_bTUmsg=false;
|
||||||
if(m_nContest==RTTY and m_nextCall!="") {
|
if(m_nContest==RTTY and m_nextCall!="") {
|
||||||
logQSOTimer.start(0);
|
|
||||||
// We're in RTTY contest and have "nextCall" queued up: send a "TU; ..." message
|
// We're in RTTY contest and have "nextCall" queued up: send a "TU; ..." message
|
||||||
|
on_logQSOButton_clicked();
|
||||||
|
ui->tx3->setText(ui->tx3->text().remove("TU; "));
|
||||||
useNextCall();
|
useNextCall();
|
||||||
QString t="TU; " + ui->tx3->text();
|
QString t="TU; " + ui->tx3->text();
|
||||||
ui->tx3->setText(t);
|
ui->tx3->setText(t);
|
||||||
|
Loading…
Reference in New Issue
Block a user