Skip to content

Commit

Permalink
Add label for local call stack context menu.
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfpld committed Oct 4, 2024
1 parent 3e41052 commit 1499da5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions profiler/src/profiler/TracySourceView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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; i<lcs->size; i++ )
{
Expand Down

0 comments on commit 1499da5

Please sign in to comment.