From e6b677d6639c24c16dd1c5f3373e7b8d761cf052 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 31 Jul 2018 11:10:57 -0400 Subject: [PATCH] Don't use Tx1 when operating in any of the contest-like modes. --- mainwindow.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 6a4449afc..f123d3e15 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -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: if(nsec != m_sec0) { // qDebug() << "OneSec:" << m_nContest;