mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-24 02:12:37 -04:00
When Tx1 entry is disabled, Tx1 button should also be disabled.
This commit is contained in:
parent
6f00ec79a2
commit
e4ebddcf13
@ -3892,10 +3892,12 @@ void MainWindow::guiUpdate()
|
|||||||
SpecOp::RTTY==m_config.special_op_id()) ) {
|
SpecOp::RTTY==m_config.special_op_id()) ) {
|
||||||
//We're in a contest-like mode other than EU_VHF: start QSO with Tx2.
|
//We're in a contest-like mode other than EU_VHF: start QSO with Tx2.
|
||||||
ui->tx1->setEnabled(false);
|
ui->tx1->setEnabled(false);
|
||||||
|
ui->txb1->setEnabled(false);
|
||||||
}
|
}
|
||||||
if(!ui->tx1->isEnabled() and SpecOp::EU_VHF==m_config.special_op_id()) {
|
if(!ui->tx1->isEnabled() and SpecOp::EU_VHF==m_config.special_op_id()) {
|
||||||
//We're in EU_VHF mode: start QSO with Tx1.
|
//We're in EU_VHF mode: start QSO with Tx1.
|
||||||
ui->tx1->setEnabled(true);
|
ui->tx1->setEnabled(true);
|
||||||
|
ui->txb1->setEnabled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user