From 62a464d1ac594675966902f42a65e77fdf39750d Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Thu, 11 Jul 2019 20:37:40 -0400 Subject: [PATCH] Fixed tune halting. Fixed CQ coloring --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 422a1ed..d35d827 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -5435,7 +5435,7 @@ void MainWindow::stopTx2(){ qDebug() << "stopTx2 frames left" << m_txFrameCount; // If we're holding the PTT and there are more frames to transmit, do not emit the PTT signal - if(m_config.hold_ptt() && m_txFrameCount > 0){ + if(!m_tune && m_config.hold_ptt() && m_txFrameCount > 0){ return; } @@ -11901,7 +11901,7 @@ void MainWindow::displayCallActivity() { } if(hasCQ){ - for(int i = 0; i < ui->tableWidgetRXAll->columnCount(); i++){ + for(int i = 0; i < ui->tableWidgetCalls->columnCount(); i++){ ui->tableWidgetCalls->item(row, i)->setBackground(QBrush(m_config.color_CQ())); } }