diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 19a78866..28c6ccc7 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -3171,9 +3171,11 @@ void View::DrawOptions() void View::DrawMessages() { ImGui::Begin( "Messages", &m_showMessages ); - ImGui::Columns( 2 ); + ImGui::Columns( 3 ); ImGui::Text( "Time" ); ImGui::NextColumn(); + ImGui::Text( "Thread" ); + ImGui::NextColumn(); ImGui::Text( "Message" ); ImGui::NextColumn(); ImGui::Separator(); @@ -3189,6 +3191,10 @@ void View::DrawMessages() } ImGui::PopID(); ImGui::NextColumn(); + ImGui::Text( "%s", m_worker.GetThreadString( v->thread ) ); + ImGui::SameLine(); + ImGui::TextDisabled( "(0x%" PRIX64 ")", v->thread ); + ImGui::NextColumn(); ImGui::TextWrapped( "%s", m_worker.GetString( v->ref ) ); ImGui::NextColumn(); }