From a958874d3bfee2b809c76fe73c9bdb2ee128b79a Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Fri, 20 Sep 2024 18:09:29 +0200 Subject: [PATCH] Fix SuperFox free text messages not working anymore. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 0ac113ebc..d4c84ee06 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -10657,7 +10657,7 @@ void MainWindow::foxTxSequencer() } // Maybe send out the freetext message? - if (ui->cbSendMsg->isChecked() && (islot < m_Nslots)) { + if (!m_config.superFox() && ui->cbSendMsg->isChecked() && (islot < m_Nslots)) { fm = m_freeTextMsg; islot++; foxGenWaveform(islot - 1, fm);