From c67d91c6ac83f9fc1da3f6d8071015aa677df518 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 23 Jan 2019 18:15:19 +0100 Subject: [PATCH] Display numerical thread id in thread tooltip. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index c620383d..77663fff 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -1823,6 +1823,8 @@ void View::DrawZones() ImGui::BeginTooltip(); ImGui::Text( "%s", m_worker.GetThreadString( v->id ) ); + ImGui::SameLine(); + ImGui::TextDisabled( "(0x%" PRIx64 ")", v->id ); if( crash.thread == v->id ) { ImGui::SameLine();