From fee9f658c764283405cf3ccfc02bdd5768db5fe5 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 12 Jun 2015 14:09:40 +0000 Subject: [PATCH] Echo mode is *not* a Simplex mode. Code that sets Echo mode calls "WSPR_config(true)" to make a bunch of irrelevant GUI controls invisible, thus simplifying the user interface. However, Echo mode should NOT be set as a simplex mode. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@5597 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 054b5cdb3..49c6614b7 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2144,6 +2144,7 @@ void MainWindow::guiUpdate() int(100*m_s6/6.0)); if(nsec != m_sec0) { //Once per second + qDebug() << m_bSimplex; if(m_mode!="Echo") { int ipct=0; if(m_monitoring or m_transmitting) ipct=int(100*m_nseq/txDuration); @@ -3180,7 +3181,7 @@ void MainWindow::on_actionEcho_triggered() mode_label->setText(m_mode); on_actionAstronomical_data_triggered (); VHF_controls_visible(false); - WSPR_config(true); + WSPR_config(true); //Make some irrelevant controls invisible ui->decodedTextLabel->setText(" UTC N Level Sig DF Width Q"); auto_tx_label->setText(""); ui->tabWidget->setCurrentIndex(0); @@ -3223,7 +3224,7 @@ void MainWindow::WSPR_config(bool b) ui->lookupButton->setVisible(!b); ui->addButton->setVisible(!b); ui->DecodeButton->setEnabled(!b); - if(b) { + if(b and (m_mode!="Echo")) { ui->decodedTextLabel->setText( "UTC dB DT Freq Drift Call Grid dBm Dist"); auto_tx_label->setText("");