mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-20 04:32:19 -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_mode="FST4";
|
||||||
m_modeTx="FST4";
|
m_modeTx="FST4";
|
||||||
ui->actionFST4->setChecked(true);
|
ui->actionFST4->setChecked(true);
|
||||||
|
m_bFast9=false;
|
||||||
|
m_bFastMode=false;
|
||||||
|
m_fastGraph->hide();
|
||||||
|
m_wideGraph->show();
|
||||||
m_nsps=6912; //For symspec only
|
m_nsps=6912; //For symspec only
|
||||||
m_FFTSize = m_nsps / 2;
|
m_FFTSize = m_nsps / 2;
|
||||||
Q_EMIT FFTSize(m_FFTSize);
|
Q_EMIT FFTSize(m_FFTSize);
|
||||||
@ -5912,6 +5916,10 @@ void MainWindow::on_actionFST4W_triggered()
|
|||||||
m_mode="FST4W";
|
m_mode="FST4W";
|
||||||
m_modeTx="FST4W";
|
m_modeTx="FST4W";
|
||||||
ui->actionFST4W->setChecked(true);
|
ui->actionFST4W->setChecked(true);
|
||||||
|
m_bFast9=false;
|
||||||
|
m_bFastMode=false;
|
||||||
|
m_fastGraph->hide();
|
||||||
|
m_wideGraph->show();
|
||||||
m_nsps=6912; //For symspec only
|
m_nsps=6912; //For symspec only
|
||||||
m_FFTSize = m_nsps / 2;
|
m_FFTSize = m_nsps / 2;
|
||||||
Q_EMIT FFTSize(m_FFTSize);
|
Q_EMIT FFTSize(m_FFTSize);
|
||||||
|
Loading…
Reference in New Issue
Block a user