mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 08:31:57 -05:00
Don't use Tx1 when operating in any of the contest-like modes.
This commit is contained in:
parent
b0e7901502
commit
e6b677d663
@ -3682,6 +3682,11 @@ void MainWindow::guiUpdate()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(ui->txrb1->isEnabled() and (m_mode=="FT8" or m_mode=="MSK144") and m_nContest!=NONE) {
|
||||||
|
//We're in a contest-like mode, don't use Tx1.
|
||||||
|
ui->tx1->setEnabled(false);
|
||||||
|
}
|
||||||
|
|
||||||
//Once per second:
|
//Once per second:
|
||||||
if(nsec != m_sec0) {
|
if(nsec != m_sec0) {
|
||||||
// qDebug() << "OneSec:" << m_nContest;
|
// qDebug() << "OneSec:" << m_nContest;
|
||||||
|
Loading…
Reference in New Issue
Block a user