From 9779c164461cbbe2c9300baf0871d3754d629f11 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Fri, 31 May 2024 17:06:42 +0200 Subject: [PATCH] Disable the 'Rx All Freqs' checkbox when in Hound mode and SuperFox is enabled. --- widgets/mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index f8b5d664d..461c7fd96 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7259,8 +7259,10 @@ void MainWindow::on_actionFT8_triggered() displayWidgets(nWidgets("11101000010011000001000000000011000000")); if(m_config.superFox()) { ui->labDXped->setText(tr ("Super Hound")); + ui->cbRxAll->setEnabled(false); } else { ui->labDXped->setText(tr ("Hound")); + ui->cbRxAll->setEnabled(true); } ui->txrb1->setChecked(true); ui->txrb2->setEnabled(false);