From fd7caa8cd63b25796f532e5bbdbf215507b5b408 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sat, 19 Mar 2022 14:29:52 -0400 Subject: [PATCH] Fix the setting of TxFirst after click on ActiveStations window. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 9d7db1959..5d4ec5f82 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -3491,7 +3491,7 @@ void MainWindow::callSandP2(int n) genStdMsgs(w[3]); //### real SNR would be better here? ui->RxFreqSpinBox->setValue(w[4].toInt()); setTxMsg(1); - m_txFirst = (w[2]=="0"); + m_txFirst = (w[5]=="0"); ui->txFirstCheckBox->setChecked(m_txFirst); if (!ui->autoButton->isChecked()) ui->autoButton->click(); // Enable Tx if(m_transmitting) m_restart=true;