Show image name next to symbol name.

This commit is contained in:
Bartosz Taudul 2020-07-14 17:23:04 +02:00
parent 1da51918b6
commit d614dbeda3

View File

@ -961,6 +961,8 @@ void SourceView::RenderSymbolView( const Worker& worker, View& view )
{
TextFocused( ICON_FA_PUZZLE_PIECE " Symbol:", worker.GetString( sym->name ) );
}
ImGui::SameLine();
TextDisabledUnformatted( worker.GetString( sym->imageName ) );
auto inlineList = worker.GetInlineSymbolList( m_baseAddr, m_codeLen );
if( inlineList )