]> sigrok.org Git - pulseview.git/commitdiff
logging: Use different color for srd log messages.
authorUwe Hermann <redacted>
Fri, 30 Mar 2018 20:24:43 +0000 (22:24 +0200)
committerUwe Hermann <redacted>
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

index ea0798286e6135dc8a57ab0b2b46669d06f28b93..b0355168dbb640438db4f62e1b6661e9a2e3826d 100644 (file)
@@ -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;