From 186abfe99e96b62fb6ca3fbcc742e62b37358f8c Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Wed, 13 Dec 2023 18:51:06 +0100 Subject: [PATCH] Again, make the red background color consistent with the WSJT-X default value. --- qmap/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qmap/mainwindow.cpp b/qmap/mainwindow.cpp index e25cc9fc3..9f3cc8cbe 100644 --- a/qmap/mainwindow.cpp +++ b/qmap/mainwindow.cpp @@ -961,7 +961,7 @@ void MainWindow::guiUpdate() QTextBlockFormat f = cursor.blockFormat(); f.setBackground(QBrush(Qt::white)); if(t.mid(36,2)=="30") f.setBackground(QBrush(Qt::yellow)); - if(t.indexOf(m_myCall)>10 and m_myCallColor==1) f.setBackground(QColor(255,105,102)); + if(t.indexOf(m_myCall)>10 and m_myCallColor==1) f.setBackground(QColor(255,102,102)); if(t.indexOf(m_myCall)>10 and m_myCallColor==2) f.setBackground(QBrush(Qt::green)); if(t.indexOf(m_myCall)>10 and m_myCallColor==3) f.setBackground(QBrush(Qt::cyan)); cursor.setBlockFormat(f);