From 95f4162870dde26701292149d74ed59bdca70d84 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 18 Aug 2019 14:30:52 +0200 Subject: [PATCH] Display number of tracked processes. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index b8739735..3aca0aa6 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -10413,6 +10413,8 @@ void View::DrawCpuDataWindow() ImGui::Begin( "CPU data", &m_showCpuDataWindow ); TextFocused( "Tracked threads:", RealToString( ctd.size(), true ) ); + ImGui::SameLine(); + TextFocused( "Tracked processes:", RealToString( pids.size(), true ) ); ImGui::Separator(); ImGui::BeginChild( "##cpudata" ); ImGui::Columns( 5 );