mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-21 03:28:59 -04:00
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
This commit is contained in:
parent
21cf5a0cd0
commit
1976516545
@ -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("");
|
||||
|
Loading…
Reference in New Issue
Block a user