Display PID in available client tooltip.

This commit is contained in:
Bartosz Taudul 2022-10-09 22:01:09 +02:00
parent 76213331f4
commit 05f4efa2f4
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

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