Dim external entries in symbol functions lists.

This commit is contained in:
Bartosz Taudul
2026-05-30 01:24:10 +02:00
parent de1f84d52b
commit b7ed5bd9ef

View File

@@ -918,7 +918,14 @@ void SourceView::RenderSymbolView( Worker& worker, View& view )
const auto normalized = shortenName != ShortenName::Never ? ShortenZoneName( ShortenName::OnlyNormalize, symName ) : symName;
const auto selected = ImGui::Selectable( "", v.first == m_symAddr, ImGuiSelectableFlags_SpanAllColumns );
ImGui::SameLine( 0, 0 );
ImGui::TextUnformatted( normalized );
if( worker.IsFrameExternal( isym->file, isym->imageName ) )
{
TextDisabledUnformatted( normalized );
}
else
{
ImGui::TextUnformatted( normalized );
}
TooltipNormalizedName( symName, normalized );
if( selected )
{