diff --git a/profiler/src/profiler/TracyUtility.cpp b/profiler/src/profiler/TracyUtility.cpp index 60d3f4e8..14746f39 100644 --- a/profiler/src/profiler/TracyUtility.cpp +++ b/profiler/src/profiler/TracyUtility.cpp @@ -19,7 +19,7 @@ constexpr const char* TypesList[] = { const char* ShortenZoneName( ShortenName type, const char* name, ImVec2& tsz, float zsz ) { assert( type != ShortenName::Never ); - if( name[0] == '<' ) return name; + if( name[0] == '<' || name[0] == '[' ) return name; if( type == ShortenName::Always ) zsz = 0; static char buf[64*1024];