mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-03-24 21:19:02 -04:00
Make the red background colur consistent with the WSJT-X default value.
This commit is contained in:
parent
1b3f4315b1
commit
c45420b194
@ -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(QBrush(Qt::red));
|
||||
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==2) f.setBackground(QBrush(Qt::green));
|
||||
if(t.indexOf(m_myCall)>10 and m_myCallColor==3) f.setBackground(QBrush(Qt::cyan));
|
||||
cursor.setBlockFormat(f);
|
||||
|
Loading…
Reference in New Issue
Block a user