From fe920efb6f89c71d39065c65cd9dae5196e59f15 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 17 Oct 2016 17:58:05 +0000 Subject: [PATCH] When auto-sequencing, don't call GenStdMsgs if we're already sending 73. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7193 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 131720c79..75e1e2507 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3379,7 +3379,7 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl rpt=QString::number(n); } ui->rptSpinBox->setValue(n); - genStdMsgs(rpt); + if(m_nTx73==0) genStdMsgs(rpt); //Don't genStdMsgs if we're already sending 73. // Determine appropriate response to received message auto dtext = " " + decodedtext.string () + " "; @@ -5035,11 +5035,13 @@ void MainWindow::transmit (double snr) } // In auto-sequencing mode, stop after 5 transmissions of "73" message. - if(m_mode=="JT9" and m_bFast9 and ui->cbAutoSeq->isChecked()) { - if(m_ntx==5) { - m_nTx73 += 1; - } else { - m_nTx73=0; + if(m_bFastMode or m_bFast9) { + if(ui->cbAutoSeq->isChecked()) { + if(m_ntx==5) { + m_nTx73 += 1; + } else { + m_nTx73=0; + } } } }