From df773b649cb53ab1d0162ca4a1ec28ab475680d1 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 21 Jul 2016 13:29:55 +0200 Subject: [PATCH] =?UTF-8?q?Event=20colours=20updated=20for=20greater=20dis?= =?UTF-8?q?ambiguation=20between=20EAPHost=20and=20G=C3=89ANTLink=20entrie?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- EventMonitor/ETWLog.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/EventMonitor/ETWLog.cpp b/EventMonitor/ETWLog.cpp index b6aca8a..929fc33 100644 --- a/EventMonitor/ETWLog.cpp +++ b/EventMonitor/ETWLog.cpp @@ -377,10 +377,10 @@ void wxETWListCtrl::OnETWEvent(wxETWEvent& event) wxListItem item; item.SetId(m_item_id++); item.SetTextColour( - rec.EventHeader.EventDescriptor.Level >= TRACE_LEVEL_VERBOSE ? (is_ours ? 0x888888 : 0xaaaaaa) : - rec.EventHeader.EventDescriptor.Level >= TRACE_LEVEL_INFORMATION ? (is_ours ? 0x000000 : 0x555555) : - rec.EventHeader.EventDescriptor.Level >= TRACE_LEVEL_WARNING ? (is_ours ? 0x00aacc : 0x55ccdd) : - (is_ours ? 0x0000ff : 0x5555ff)); + rec.EventHeader.EventDescriptor.Level >= TRACE_LEVEL_VERBOSE ? (is_ours ? 0x666666 : 0xcccccc) : + rec.EventHeader.EventDescriptor.Level >= TRACE_LEVEL_INFORMATION ? (is_ours ? 0x000000 : 0xaaaaaa) : + rec.EventHeader.EventDescriptor.Level >= TRACE_LEVEL_WARNING ? (is_ours ? 0x00aacc : 0xaaeeee) : + (is_ours ? 0x0000ff : 0xaaaaff)); item.SetBackgroundColour(0xffffff); {