From b299700d97add0711724216de7b712f382e1ac43 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 6 Mar 2024 11:04:49 -0500 Subject: [PATCH] Tentative: change the red labels to "SuperFox" and "SuperHound". --- widgets/mainwindow.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 56fb88500..6a757a84a 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7177,7 +7177,11 @@ void MainWindow::on_actionFT8_triggered() ui->TxFreqSpinBox->setValue(300); // 01234567890123456789012345678901234567 displayWidgets(nWidgets("11101000010011100001000000000010000000")); - ui->labDXped->setText(tr ("Fox")); + if(m_config.superFox()) { + ui->labDXped->setText(tr ("SuperFox")); + } else { + ui->labDXped->setText(tr ("Fox")); + } on_fox_log_action_triggered(); } if(SpecOp::HOUND == m_specOp) { @@ -7189,7 +7193,11 @@ void MainWindow::on_actionFT8_triggered() ui->cbHoldTxFreq->setChecked(true); // 01234567890123456789012345678901234567 displayWidgets(nWidgets("11101000010011000001000000000011000000")); - ui->labDXped->setText(tr ("Hound")); + if(m_config.superFox()) { + ui->labDXped->setText(tr ("SuperHound")); + } else { + ui->labDXped->setText(tr ("Hound")); + } ui->txrb1->setChecked(true); ui->txrb2->setEnabled(false); ui->txrb4->setEnabled(false);