From d40488ccf1fe5f9b1b4fca083f6da339d780f0e6 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 25 Nov 2017 15:48:41 +0100 Subject: [PATCH] Add more numeric separators. --- server/TracyView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 766dcecb..9a6b2585 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2366,7 +2366,7 @@ int View::DrawZoneLevel( const Vector& vec, bool hover, double pxns, if( num > 1 ) { ImGui::BeginTooltip(); - ImGui::Text( "Zones too small to display: %i", num ); + ImGui::Text( "Zones too small to display: %s", RealToString( num, true ) ); ImGui::Separator(); ImGui::Text( "Execution time: %s", TimeToString( rend - ev.start ) ); ImGui::EndTooltip(); @@ -2562,7 +2562,7 @@ int View::DrawGpuZoneLevel( const Vector& vec, bool hover, double pxn if( num > 1 ) { ImGui::BeginTooltip(); - ImGui::Text( "Zones too small to display: %i", num ); + ImGui::Text( "Zones too small to display: %s", RealToString( num, true ) ); ImGui::Separator(); ImGui::Text( "Execution time: %s", TimeToString( rend - ev.gpuStart ) ); ImGui::EndTooltip();