From 67301c8402ff2face1fdbb4cd37f0ce8a7dff570 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Wed, 8 Mar 2023 22:01:26 +0100 Subject: [PATCH] Always set txb1 visible when switching to Hound mode via the "H" button. --- widgets/mainwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 11f800a0e..328a6394b 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -10539,6 +10539,9 @@ void MainWindow::on_houndButton_clicked (bool checked) if (checked) { ui->houndButton->setStyleSheet("background-color: #ff0000;"); m_config.setSpecial_Hound(); + ui->tx1->setVisible(true); + ui->tx1->setEnabled(true); + ui->txb1->setEnabled(true); } else { ui->houndButton->setStyleSheet(""); m_config.setSpecial_None();