From 7329eb6e9923ba82529cf08567b466d156c29102 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 19 Oct 2017 20:34:48 +0200 Subject: [PATCH] Display plot points count with separators. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index cd9f5c0e..6a9052db 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -2413,7 +2413,7 @@ int View::DrawPlots( int offset, double pxns, const ImVec2& wpos, bool hover ) ImGui::BeginTooltip(); ImGui::Text( "Plot \"%s\"", txt ); - ImGui::Text( "Data points: %i", v->data.size() ); + ImGui::Text( "Data points: %s", RealToString( v->data.size(), true ) ); ImGui::Text( "Data range: %s", RealToString( v->max - v->min, true ) ); ImGui::Text( "Min value: %s", RealToString( v->min, true ) ); ImGui::Text( "Max value: %s", RealToString( v->max, true ) );