Shorten external frames in call stack tooltips.

This commit is contained in:
Bartosz Taudul
2026-05-04 01:05:02 +02:00
parent 600227a30b
commit 04728994a5

View File

@@ -825,7 +825,16 @@ void View::CallstackTooltipContents( uint32_t idx )
}
else if( external )
{
TextDisabledUnformatted( txt );
if( m_vd.shortenName == ShortenName::Never )
{
TextDisabledUnformatted( txt );
}
else
{
const auto normalized = ShortenZoneName( ShortenName::OnlyNormalize, txt );
TextDisabledUnformatted( normalized );
TooltipNormalizedName( txt, normalized );
}
}
else if( m_vd.shortenName == ShortenName::Never )
{