From 1f0ddb92c53b71ff5f5af9f7f38414af6b29fac7 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 28 Dec 2023 23:51:09 +0100 Subject: [PATCH] Make coloring of the Q65-30B lines compliant with Dark Style. --- widgets/activeStations.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/widgets/activeStations.cpp b/widgets/activeStations.cpp index 9bfa4f755..7e5c6e458 100644 --- a/widgets/activeStations.cpp +++ b/widgets/activeStations.cpp @@ -107,10 +107,12 @@ void ActiveStations::displayRecentStations(QString mode, QString const& t) cursor.setPosition(npos); cursor.select(QTextCursor::LineUnderCursor); fmt.setBackground(QBrush(Qt::yellow)); + fmt.setForeground(QBrush(Qt::black)); } else { cursor.setPosition(i0+10); cursor.select(QTextCursor::LineUnderCursor); - fmt.setBackground(QBrush(Qt::white)); + fmt.clearForeground(); + fmt.clearBackground(); } cursor.setCharFormat(fmt); i0=i1+1;