From 48b5b25a6a82ea4e78de3182ba3016effc7ad0f8 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 22 Feb 2019 20:55:46 +0100 Subject: [PATCH] Display count of messages in threads. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 99cc554a..9beb3e27 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -5324,6 +5324,8 @@ void View::DrawMessages() ImGui::PushID( idx++ ); ImGui::Checkbox( m_worker.GetThreadString( t->id ), &VisibleMsgThread( t->id ) ); ImGui::PopID(); + ImGui::SameLine(); + ImGui::TextDisabled( "(%s)", RealToString( t->messages.size(), true ) ); if( crash.thread == t->id ) { ImGui::SameLine();