From 19ccf338af3036461c55eb31645bea818531f375 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 12 Sep 2024 11:08:28 +0200 Subject: [PATCH] Allow waterfall clicks to set the Rx frequency in Super Hound mode only between 700 and 800 Hz. --- widgets/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 4b9250938..f0193749c 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -8571,7 +8571,8 @@ void MainWindow::setXIT(int n, Frequency base) void MainWindow::setFreq4(int rxFreq, int txFreq) { if (m_mode=="ECHO") return; // we do not adjust rx/tx for echo mode -- always 1500Hz - if (ui->RxFreqSpinBox->isEnabled ()) ui->RxFreqSpinBox->setValue(rxFreq); + if (ui->RxFreqSpinBox->isEnabled () && !(SpecOp::HOUND==m_specOp && m_config.superFox() && + (rxFreq < 700 or rxFreq > 800))) ui->RxFreqSpinBox->setValue(rxFreq); if(m_mode=="WSPR" or m_mode=="FST4W") { ui->WSPRfreqSpinBox->setValue(txFreq); } else {