From d84495d0e1784571a6dee37b28253ef7a5827fe4 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 10 May 2020 16:13:19 +0200 Subject: [PATCH] Mark inline symbols. --- server/TracyView.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 16d9940d..cf138934 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -13885,6 +13885,11 @@ void View::DrawSampleParents() ImGui::Begin( "Call stack sample parents", &show, ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoScrollWithMouse ); ImGui::PushFont( m_bigFont ); TextFocused( "Symbol:", m_worker.GetString( symbol->name ) ); + if( symbol->isInline ) + { + ImGui::SameLine(); + TextDisabledUnformatted( "(inline)" ); + } ImGui::PopFont(); TextDisabledUnformatted( "Location:" ); ImGui::SameLine();