Must set m_bFastMode=false for FST4. Fixes the reported "Hold Tx frequency" issue. Also, ensure display of WideGraph rather than FastGraph for FST4, FST4W.

This commit is contained in:
Joe Taylor 2020-09-12 09:35:32 -04:00
parent 18ab40a576
commit bcdaf395f1

View File

@ -5885,6 +5885,10 @@ void MainWindow::on_actionFST4_triggered()
m_mode="FST4";
m_modeTx="FST4";
ui->actionFST4->setChecked(true);
m_bFast9=false;
m_bFastMode=false;
m_fastGraph->hide();
m_wideGraph->show();
m_nsps=6912; //For symspec only
m_FFTSize = m_nsps / 2;
Q_EMIT FFTSize(m_FFTSize);
@ -5912,6 +5916,10 @@ void MainWindow::on_actionFST4W_triggered()
m_mode="FST4W";
m_modeTx="FST4W";
ui->actionFST4W->setChecked(true);
m_bFast9=false;
m_bFastMode=false;
m_fastGraph->hide();
m_wideGraph->show();
m_nsps=6912; //For symspec only
m_FFTSize = m_nsps / 2;
Q_EMIT FFTSize(m_FFTSize);