From e2f8e67d8b07d0c0fa42b05544f307f27547dd5c Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 20 Oct 2016 13:16:58 +0000 Subject: [PATCH] Replace commented-out frequency-setting statement. Make sure that RxFreqSpinBox is visible in JT4 mode, git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7207 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index bd1ed6ff3..2af953025 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4198,6 +4198,7 @@ void MainWindow::on_actionJT4_triggered() ui->sbSubmode->setMaximum(6); ui->label_6->setText("Single-Period Decodes"); ui->label_7->setText("Average Decodes"); + ui->RxFreqSpinBox->setVisible(true); if(bVHF) { ui->sbSubmode->setValue(m_nSubMode); } else { @@ -4540,8 +4541,7 @@ void MainWindow::band_changed (Frequency f) m_lastBand.clear (); m_bandEdited = false; psk_Reporter->sendReport(); // Upload any queued spots before changing band -// Following statement commented out 10/18/2016 by K1JT, to prevent undesired start of Monitor. -// if (!m_transmitting) monitor (true); + if (!m_transmitting) monitor (true); m_freqNominal = f; m_freqTxNominal = m_freqNominal; if (m_astroWidget) m_astroWidget->nominal_frequency (m_freqNominal, m_freqTxNominal);