1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-03-21 03:28:59 -04:00

Make coloring of the Q65-30B lines compliant with Dark Style.

This commit is contained in:
Uwe Risse 2023-12-28 23:51:09 +01:00
parent 887bc433ec
commit 1f0ddb92c5

View File

@ -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;