projects
/
pulseview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7c61104
)
logging: Use different color for srd log messages.
author
Uwe Hermann
<uwe@hermann-uwe.de>
Fri, 30 Mar 2018 20:24:43 +0000
(22:24 +0200)
committer
Uwe Hermann
<uwe@hermann-uwe.de>
Fri, 30 Mar 2018 23:41:41 +0000
(
01:41
+0200)
The old brown color looked pretty reddish on some monitors (which
could be confused to mean "error"), select a slightly different color.
pv/logging.cpp
patch
|
blob
|
history
diff --git
a/pv/logging.cpp
b/pv/logging.cpp
index ea0798286e6135dc8a57ab0b2b46669d06f28b93..b0355168dbb640438db4f62e1b6661e9a2e3826d 100644
(file)
--- a/
pv/logging.cpp
+++ b/
pv/logging.cpp
@@
-105,7
+105,7
@@
void Logging::log(const QString &text, int source)
s = QString("<font color=\"blue\">sr: %1</font>").arg(text);
break;
case LogSource_srd:
- s = QString("<font color=\"
brown
\">srd: %1</font>").arg(text);
+ s = QString("<font color=\"
olive
\">srd: %1</font>").arg(text);
break;
default:
s = text;