From 6abde266eb7c8124ddb0a56d1c48e015168d0fa3 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Mon, 5 Nov 2018 09:44:44 -0500 Subject: [PATCH] Commit d0113553 (send Tx6 rather than Tx5) should be for FT8 only. --- mainwindow.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 6879b3e63..63d651bd0 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4402,9 +4402,14 @@ void MainWindow::processMessage (DecodedText const& message, Qt::KeyboardModifie ui->tx3->setText(t); m_bTUmsg=true; } else { - on_logQSOButton_clicked(); - m_ntx=6; - ui->txrb6->setChecked(true); + if(m_mode=="FT8") { + on_logQSOButton_clicked(); + m_ntx=6; + ui->txrb6->setChecked(true); + } else { + m_ntx=5; + ui->txrb5->setChecked(true); + } } } m_QSOProgress = SIGNOFF;