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 ) );