From 264545621ad2bc91ecbdaa0c55d59f7f64189339 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sun, 16 Jul 2017 15:10:16 +0000 Subject: [PATCH] Merge from trunk: ------------------------------------------------------------------------ r7856 | k1jt | 2017-07-12 14:50:17 +0100 (Wed, 12 Jul 2017) | 1 line 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-1.8@7903 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index bacd4f955..076605245 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 ();