From 3e47fd6bcde9663bd32b977059e2366a7f302ca5 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 27 Nov 2019 01:38:47 +0100 Subject: [PATCH] Display thread color boxes in messages list. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index d1c15017..5568ae28 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -7837,6 +7837,8 @@ void View::DrawMessages() } ImGui::PopID(); ImGui::NextColumn(); + SmallColorBox( GetThreadColor( tid, 0 ) ); + ImGui::SameLine(); ImGui::TextUnformatted( m_worker.GetThreadName( tid ) ); ImGui::SameLine(); ImGui::TextDisabled( "(%s)", RealToString( tid, true ) );