When Tx1 entry is disabled, Tx1 button should also be disabled.

This commit is contained in:
Joe Taylor 2019-03-28 10:41:56 -04:00
parent 6f00ec79a2
commit e4ebddcf13
1 changed files with 2 additions and 0 deletions

View File

@ -3892,10 +3892,12 @@ void MainWindow::guiUpdate()
SpecOp::RTTY==m_config.special_op_id()) ) {
//We're in a contest-like mode other than EU_VHF: start QSO with Tx2.
ui->tx1->setEnabled(false);
ui->txb1->setEnabled(false);
}
if(!ui->tx1->isEnabled() and SpecOp::EU_VHF==m_config.special_op_id()) {
//We're in EU_VHF mode: start QSO with Tx1.
ui->tx1->setEnabled(true);
ui->txb1->setEnabled(true);
}
}