Set TRperiod to 30 or 60 when in Q65 mode and a call is selected in AS Window.

This commit is contained in:
Joe Taylor 2023-12-08 12:39:00 -05:00
parent e6fad89904
commit ac1b5d03b2

View File

@ -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);