From e20bb2fe667bf69856220d255acabd3ecf63ef59 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 15 Feb 2018 16:31:47 +0100 Subject: [PATCH] Add separators to zone count. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 2a2fccd9..36c667b9 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -4177,7 +4177,7 @@ void View::DrawFindZone() { const bool expand = ImGui::TreeNode( GetThreadString( v->id ) ); ImGui::SameLine(); - ImGui::TextColored( ImVec4( 0.5f, 0.5f, 0.5f, 1.0f ), "(%i)", v->timeline.size() ); + ImGui::TextColored( ImVec4( 0.5f, 0.5f, 0.5f, 1.0f ), "(%s)", RealToString( v->timeline.size(), true ) ); if( expand ) {