diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index 9762bca0..1f93e3b6 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -392,9 +392,17 @@ static void DrawContents() tracy::TextDisabledUnformatted( "" ); tracy::TextDisabledUnformatted( "Additional authors listed in AUTHORS file and in git history." ); ImGui::Separator(); + ImGui::PushFont( s_smallFont ); tracy::TextFocused( "Protocol version", tracy::RealToString( tracy::ProtocolVersion ) ); + ImGui::SameLine(); + ImGui::SeparatorEx( ImGuiSeparatorFlags_Vertical ); + ImGui::SameLine(); tracy::TextFocused( "Broadcast version", tracy::RealToString( tracy::BroadcastVersion ) ); + ImGui::SameLine(); + ImGui::SeparatorEx( ImGuiSeparatorFlags_Vertical ); + ImGui::SameLine(); tracy::TextFocused( "Build date", __DATE__ ", " __TIME__ ); + ImGui::PopFont(); ImGui::EndPopup(); } ImGui::Spacing();