diff --git a/mainwindow.cpp b/mainwindow.cpp index 345a344..1761b12 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -12007,6 +12007,7 @@ void MainWindow::displayBandActivity() { if (isOffsetSelected) { for(int i = 0; i < ui->tableWidgetRXAll->columnCount(); i++){ ui->tableWidgetRXAll->item(row, i)->setSelected(true); + ui->tableWidgetRXAll->item(row, i)->setBackground(QBrush(m_config.color_table_highlight())); } } @@ -12364,6 +12365,7 @@ void MainWindow::displayCallActivity() { if (isCallSelected) { for(int i = 0; i < ui->tableWidgetCalls->columnCount(); i++){ ui->tableWidgetCalls->item(row, i)->setSelected(true); + ui->tableWidgetCalls->item(row, i)->setBackground(QBrush(m_config.color_table_highlight())); } }