From ac1b5d03b2ccb213932c3cfba1c0181d15052aad Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 8 Dec 2023 12:39:00 -0500 Subject: [PATCH] Set TRperiod to 30 or 60 when in Q65 mode and a call is selected in AS Window. --- widgets/mainwindow.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 7082f4e9f..aff606cf5 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -3917,6 +3917,13 @@ void MainWindow::callSandP2(int n) ui->RxFreqSpinBox->setValue(w[5].toInt()); m_txFirst = (w[6]=="0"); } + + if(w[3].left(2)=="30") { + ui->sbTR->setValue(30); + } else { + ui->sbTR->setValue(60); + } + m_bDoubleClicked=true; //### needed? ui->dxCallEntry->setText(m_deCall); ui->dxGridEntry->setText(m_deGrid);