From f60db583720e5f537beb2705ab0da970ef77e3c5 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 19 Sep 2024 13:19:59 -0400 Subject: [PATCH] Fix the Superfox "please confirm Rx Freq" warning. Don't set FTol=20 in SuperFox mode. --- widgets/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 3a232b86b..d26be0066 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -3570,8 +3570,8 @@ void MainWindow::decode() //decode() if(dec_data.params.b_superfox and dec_data.params.b_even_seq and m_ihsym<50) return; dec_data.params.ntol=ui->sbFtol->value (); - if(!m_config.enable_VHF_features()) { - dec_data.params.ntol=20; + if(!m_config.enable_VHF_features() and ) { + if(!m_config.superFox()) dec_data.params.ntol=20; dec_data.params.naggressive=0; } if(m_mode=="FST4") { @@ -8593,7 +8593,7 @@ void MainWindow::setFreq4(int rxFreq, int txFreq) (qAbs(rxFreq-750)>200)) { // SuperHound should normally keep RxFreq close to 750 Hz if(MessageBox::No == MessageBox::query_message (this, - tr ("Please confirm setting RxFreq to %1 Hz").arg + tr ("Please confirm setting RxFreq to %1 Hz.\nSuperFox should be at 750 Hz.").arg (QString::number(rxFreq)))) return; }