From 0ff059cdd636fb53364e34bb250288ab69ca0e01 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 12 Jul 2017 13:50:17 +0000 Subject: [PATCH] Fix Ftolgreen bar on startup; fix gray-out of 'Enable AP...' on access to Settings. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7856 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 7782d61f9..49797e8e6 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -805,7 +805,6 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, morse_(const_cast (m_config.my_callsign ().toLatin1().constData()), const_cast (icw), &m_ncw, m_config.my_callsign ().length()); on_actionWide_Waterfall_triggered(); - m_wideGraph->setTol(500); m_wideGraph->setLockTxFreq(m_lockTxFreq); ui->cbShMsgs->setChecked(m_bShMsgs); ui->cbSWL->setChecked(m_bSWL); @@ -1554,7 +1553,7 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog setup_status_bar (vhf); bool b = vhf && (m_mode=="JT4" or m_mode=="JT65" or m_mode=="ISCAT" or - m_mode=="JT9" or m_mode=="MSK144"); + m_mode=="JT9" or m_mode=="MSK144" or m_mode=="QRA64"); if(b) VHF_features_enabled(b); if(m_mode=="FT8") on_actionFT8_triggered(); if(m_mode=="JT4") on_actionJT4_triggered(); @@ -1574,6 +1573,7 @@ void MainWindow::on_actionSettings_triggered() //Setup Dialog if(m_mode=="WSPR") on_actionWSPR_triggered(); if(m_mode=="WSPR-LF") on_actionWSPR_LF_triggered(); if(m_mode=="Echo") on_actionEcho_triggered(); + if(b) VHF_features_enabled(b); } m_config.transceiver_online ();