From d189839f1765b09f812bdc5cd0ccc84e6afd5dd8 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Sun, 22 Nov 2015 14:34:43 +0000 Subject: [PATCH] In WSPR mode, output "--- Receiving on xxx m ---" only when no decodes and band-hopping is checked. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx-1.6@6149 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index b09f6eecf..1f90b48fa 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4021,7 +4021,7 @@ void MainWindow::p1ReadFromStdout() //p1readFromStdout m_bdecoded = m_nWSPRdecodes > 0; if(!m_diskData) { WSPR_history(m_dialFreqRxWSPR, m_nWSPRdecodes); - if(m_nWSPRdecodes==0) { + if(m_nWSPRdecodes==0 and ui->band_hopping_group_box->isChecked()) { t = " Receiving " + m_mode + " ----------------------- " + m_config.bands ()->find (m_dialFreqRxWSPR); t=WSPR_hhmm(-60) + ' ' + t.rightJustified (66, '-');