From 873d536845d47b0f1a7251328e2202cfa20147ad Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 29 Sep 2019 19:22:50 +0200 Subject: [PATCH] Display number of strings. --- server/TracyView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index c3abea56..fad4adbd 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -10124,6 +10124,7 @@ void View::DrawInfo() TextFocused( "Plot data points:", RealToString( m_worker.GetPlotCount(), true ) ); TextFocused( "Memory allocations:", RealToString( m_worker.GetMemData().data.size(), true ) ); TextFocused( "Source locations:", RealToString( m_worker.GetSrcLocCount(), true ) ); + TextFocused( "Strings:", RealToString( m_worker.GetStringsCount(), true ) ); TextFocused( "Call stacks:", RealToString( m_worker.GetCallstackPayloadCount(), true ) ); TextFocused( "Call stack frames:", RealToString( m_worker.GetCallstackFrameCount(), true ) ); TextFocused( "Frame images:", RealToString( ficnt, true ) );