diff --git a/server/TracyView_Callstack.cpp b/server/TracyView_Callstack.cpp index e3746f22..6286335d 100644 --- a/server/TracyView_Callstack.cpp +++ b/server/TracyView_Callstack.cpp @@ -405,10 +405,14 @@ void View::DrawCallstackCalls( uint32_t callstack, uint16_t limit ) const { TextDisabledUnformatted( txt ); } - else + else if( m_shortenName == ShortenName::Never ) { ImGui::TextUnformatted( txt ); } + else + { + ImGui::TextUnformatted( ShortenZoneName( ShortenName::Always, txt ) ); + } } }