Don't display Fox or Hound on labDX in FT4 mode. Fox/Hound is only available in FT8 mode.

This commit is contained in:
Joe Taylor 2020-05-02 11:54:20 -04:00
parent db773cf7dd
commit aa2c965b85
1 changed files with 4 additions and 0 deletions

View File

@ -8869,6 +8869,10 @@ void MainWindow::chkFT4()
}
on_contest_log_action_triggered();
}
if (SpecOp::HOUND == m_config.special_op_id() or SpecOp::FOX == m_config.special_op_id()) {
ui->labDXped->setVisible(false);
}
}
void MainWindow::on_pbBestSP_clicked()