Add label for local call stack context menu.

This commit is contained in:
Bartosz Taudul 2024-10-04 23:49:06 +02:00
parent 3e41052853
commit 1499da51b8
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -2870,6 +2870,9 @@ uint64_t SourceView::RenderSymbolAsmView( const AddrStatData& as, Worker& worker
} }
if( ImGui::BeginPopup( "localCallstackPopup" ) ) if( ImGui::BeginPopup( "localCallstackPopup" ) )
{ {
ImGui::PushFont( m_smallFont );
TextDisabledUnformatted( "Local call stack:" );
ImGui::PopFont();
const auto lcs = m_localCallstackPopup; const auto lcs = m_localCallstackPopup;
for( uint8_t i=0; i<lcs->size; i++ ) for( uint8_t i=0; i<lcs->size; i++ )
{ {