Fixed tune halting. Fixed CQ coloring

This commit is contained in:
Jordan Sherer 2019-07-11 20:37:40 -04:00
parent e5883a14b9
commit 62a464d1ac

View File

@ -5435,7 +5435,7 @@ void MainWindow::stopTx2(){
qDebug() << "stopTx2 frames left" << m_txFrameCount; 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 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; return;
} }
@ -11901,7 +11901,7 @@ void MainWindow::displayCallActivity() {
} }
if(hasCQ){ 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())); ui->tableWidgetCalls->item(row, i)->setBackground(QBrush(m_config.color_CQ()));
} }
} }