From 71978d0eb4abcfce06be8a4d80e5d3628df336a4 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Fri, 27 Dec 2019 23:06:09 -0500 Subject: [PATCH] Reverted change for pi --- mainwindow.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 1761b12..87d650b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -12048,7 +12048,7 @@ void MainWindow::displayBandActivity() { // Set table color auto style = QString("QTableWidget { background:%1; selection-background-color:%2; alternate-background-color:%1; color:%3; } " - "QTableWidget::item:selected { background-color: palette(highlight); color: palette(highlightedText); }"); + /*"QTableWidget::item:selected { background-color: palette(highlight); color: palette(highlightedText); }"*/); style = style.arg(m_config.color_table_background().name()); style = style.arg(m_config.color_table_highlight().name()); style = style.arg(m_config.color_table_foreground().name()); @@ -12390,7 +12390,8 @@ void MainWindow::displayCallActivity() { // Set table color auto style = QString("QTableWidget { background:%1; selection-background-color:%2; alternate-background-color:%1; color:%3; } " - "QTableWidget::item:selected { background-color: palette(highlight); color: palette(highlightedText); }"); + /*"QTableWidget::item:selected { background-color: palette(highlight); color: palette(highlightedText); }"*/ + ); style = style.arg(m_config.color_table_background().name()); style = style.arg(m_config.color_table_highlight().name()); style = style.arg(m_config.color_table_foreground().name());