mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 05:38:46 -05:00
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:
parent
18ab40a576
commit
bcdaf395f1
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user