From 1499da51b869f8d527ab3ff961979c2244223097 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 4 Oct 2024 23:49:06 +0200 Subject: [PATCH] Add label for local call stack context menu. --- profiler/src/profiler/TracySourceView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profiler/src/profiler/TracySourceView.cpp b/profiler/src/profiler/TracySourceView.cpp index 4a16f9fe..69d7b165 100644 --- a/profiler/src/profiler/TracySourceView.cpp +++ b/profiler/src/profiler/TracySourceView.cpp @@ -2870,6 +2870,9 @@ uint64_t SourceView::RenderSymbolAsmView( const AddrStatData& as, Worker& worker } if( ImGui::BeginPopup( "localCallstackPopup" ) ) { + ImGui::PushFont( m_smallFont ); + TextDisabledUnformatted( "Local call stack:" ); + ImGui::PopFont(); const auto lcs = m_localCallstackPopup; for( uint8_t i=0; isize; i++ ) {