From 6cb72a5f3ec8eab90313d5341de3bab0a33fee9e Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 27 Jul 2020 19:49:39 +0100 Subject: [PATCH] Remove duplicate ALL.TXT Tx report in beacon modes --- widgets/mainwindow.cpp | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 9a894774b..bd19a21d7 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -4103,14 +4103,15 @@ void MainWindow::guiUpdate() m_msgSent0 = current_message; } -// if(m_mode!="FT4") { - if(!m_tune) write_all("Tx",m_currentMessage); - - if (m_config.TX_messages () && !m_tune && SpecOp::FOX!=m_config.special_op_id()) { - ui->decodedTextBrowser2->displayTransmittedText(current_message, m_modeTx, - ui->TxFreqSpinBox->value(),m_bFastMode,m_TRperiod); + if (m_mode != "FST4W" && m_mode != "WSPR") + { + if(!m_tune) write_all("Tx",m_currentMessage); + if (m_config.TX_messages () && !m_tune && SpecOp::FOX!=m_config.special_op_id()) + { + ui->decodedTextBrowser2->displayTransmittedText(current_message, m_modeTx, + ui->TxFreqSpinBox->value(),m_bFastMode,m_TRperiod); + } } -// } switch (m_ntx) {