From 43845a7f212fe2087bc70495ac3a2c3a488f5e64 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 14 May 2024 13:29:09 -0400 Subject: [PATCH] Only SuperFox should use FT8_SF as the Tx mode. --- widgets/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 958467110..c3653f2d3 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -10678,7 +10678,9 @@ void MainWindow::write_all(QString txRx, QString message) } else { mode_string=m_mode.leftJustified(6,' '); } - if(mode_string=="FT8 " and txRx=="Tx" and m_config.superFox()) mode_string="FT8_SF"; + + if(mode_string=="FT8 " and txRx=="Tx" and m_config.superFox() and + m_specOp==SpecOp::FOX) mode_string="FT8_SF"; msg=msg.mid(0,15) + msg.mid(18,-1);