Attempting to fix highlighting on the pi, again

This commit is contained in:
Jordan Sherer 2019-12-27 22:58:27 -05:00
parent 94aed047ec
commit bb79785d86

View File

@ -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()));
}
}