From: Uwe Hermann Date: Fri, 30 Mar 2018 20:24:43 +0000 (+0200) Subject: logging: Use different color for srd log messages. X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=d1c343c8dcbde4c3c9c4d85c62457d3bcbf5bde6;hp=7c61104601b14e1b22d1a35151e5bd92ca3e11de;p=pulseview.git logging: Use different color for srd log messages. The old brown color looked pretty reddish on some monitors (which could be confused to mean "error"), select a slightly different color. --- diff --git a/pv/logging.cpp b/pv/logging.cpp index ea079828..b0355168 100644 --- a/pv/logging.cpp +++ b/pv/logging.cpp @@ -105,7 +105,7 @@ void Logging::log(const QString &text, int source) s = QString("sr: %1").arg(text); break; case LogSource_srd: - s = QString("srd: %1").arg(text); + s = QString("srd: %1").arg(text); break; default: s = text;