From d91321a774867a1bdaaf38e8a670cf0570a19fa5 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 15 Aug 2022 14:50:57 +0200 Subject: [PATCH] Do not shorten kernel module names. --- server/TracyView_Utility.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView_Utility.cpp b/server/TracyView_Utility.cpp index 2613f69c..5bec80b2 100644 --- a/server/TracyView_Utility.cpp +++ b/server/TracyView_Utility.cpp @@ -829,6 +829,7 @@ const char* View::GetFrameSetName( const FrameData& fd, const Worker& worker ) const char* View::ShortenZoneName( const char* name, ImVec2& tsz, float zsz ) const { assert( m_shortenName != ShortenName::Never ); + if( name[0] == '<' ) return name; if( m_shortenName == ShortenName::Always ) zsz = 0; static char buf[64*1024];