From 021368fb599c3612652746adbecb7512994a200d Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 26 Mar 2019 20:18:20 +0100 Subject: [PATCH] Display bin counts with separators. --- server/TracyView.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 26bfd802..70b910b5 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -6567,9 +6567,7 @@ void View::DrawFindZone() TextDisabledUnformatted( "Time range:" ); ImGui::SameLine(); ImGui::Text( "%s - %s", TimeToString( t0 ), TimeToString( t1 ) ); - TextDisabledUnformatted( "Count:" ); - ImGui::SameLine(); - ImGui::Text( "%" PRIu64, bins[bin] ); + TextFocused( "Count:", RealToString( bins[bin], true ) ); TextFocused( "Time spent in bin:", TimeToString( binTime[bin] ) ); TextFocused( "Time spent in the left bins:", TimeToString( tBefore ) ); TextFocused( "Time spent in the right bins:", TimeToString( tAfter ) );