mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-22 12:08:43 -04:00
Correct the logic for setting default bAlso30=true.
This commit is contained in:
parent
f93d846c22
commit
7a0a1736a7
@ -301,7 +301,7 @@ void MainWindow::readSettings()
|
||||
ui->sbOffset->setValue(settings.value("Offset",1500).toInt());
|
||||
m_NBslider=settings.value("NBslider",40).toInt();
|
||||
ui->NBslider->setValue(m_NBslider);
|
||||
m_bAlso30=settings.value("Also30",false).toBool();
|
||||
m_bAlso30=settings.value("Also30",true).toBool();
|
||||
ui->actionAlso_Q65_30x->setChecked(m_bAlso30);
|
||||
on_actionAlso_Q65_30x_toggled(m_bAlso30);
|
||||
if(!ui->actionLinrad->isChecked() && !ui->actionCuteSDR->isChecked() &&
|
||||
|
@ -135,7 +135,7 @@ private:
|
||||
bool m_saveDecoded;
|
||||
bool m_NB;
|
||||
bool m_decode_called=false;
|
||||
bool m_bAlso30=false;
|
||||
bool m_bAlso30=true;
|
||||
bool m_bDiskDatBusy=false;
|
||||
bool m_bWTransmitting=false;
|
||||
bool m_bDecodeAgain=false;
|
||||
|
Loading…
Reference in New Issue
Block a user