From 05f4efa2f4e40715ed7c7a1f8fbabbdf76061e3a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 9 Oct 2022 22:01:09 +0200 Subject: [PATCH] Display PID in available client tooltip. --- profiler/src/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 40e7a8d7..e792714d 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -706,6 +706,7 @@ static void DrawContents() } tracy::TextFocused( "IP:", v.second.address.c_str() ); tracy::TextFocused( "Port:", portstr ); + tracy::TextFocused( "PID:", tracy::RealToString( v.second.pid ) ); ImGui::EndTooltip(); } if( v.second.port != port )