Prevent H button from beeing highlighted when not in Hound mode.

This commit is contained in:
Uwe Risse 2022-04-04 10:44:06 +02:00
parent 30047ecfeb
commit 74ae5f98de
1 changed files with 5 additions and 0 deletions

View File

@ -6605,6 +6605,11 @@ void MainWindow::on_actionFT8_triggered()
switch_mode (Modes::FT8);
}
if(m_config.special_op_id() != SpecOp::HOUND) {
ui->houndButton->setChecked(false);
ui->houndButton->setStyleSheet("");
}
if (SpecOp::NONE < m_config.special_op_id () && SpecOp::FOX > m_config.special_op_id ()) {
QString t0="";
if(SpecOp::NA_VHF==m_config.special_op_id()) t0+="NA VHF";