Correct the bug in CallSandP2() that sets Rx freq incorrectly from ActiveStations window.

This commit is contained in:
Joe Taylor 2023-12-31 09:05:31 -05:00
parent 1f0ddb92c5
commit efe8f090c2

View File

@ -3927,8 +3927,8 @@ void MainWindow::callSandP2(int n)
} else { } else {
m_deCall=w[0]; m_deCall=w[0];
m_deGrid=w[1]; m_deGrid=w[1];
ui->RxFreqSpinBox->setValue(w[5].toInt()); ui->RxFreqSpinBox->setValue(w[4].toInt());
m_txFirst = (w[6]=="0"); m_txFirst = (w[5]=="0");
} }
if(w[3].left(2)=="30") { if(w[3].left(2)=="30") {