diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index 3217764c..90e8f8f1 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -268,6 +268,15 @@ void SourceView::Render( const Worker& worker ) ImGui::Spacing(); ImGui::SameLine(); TextFocused( "Symbol:", worker.GetString( sym->name ) ); + if( sym->isInline ) + { + auto parent = worker.GetSymbolData( m_baseAddr ); + if( parent ) + { + ImGui::SameLine(); + ImGui::TextDisabled( "(%s)", worker.GetString( parent->name ) ); + } + } } if( !m_showAsm )