From 55e78ba4f7e2353f88a7fd662b091348506e32b1 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 24 Sep 2022 00:29:38 +0200 Subject: [PATCH] Use ellipsis for more condensed source file in asm line. --- server/TracySourceView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracySourceView.cpp b/server/TracySourceView.cpp index 920b3733..1d041f42 100644 --- a/server/TracySourceView.cpp +++ b/server/TracySourceView.cpp @@ -3687,7 +3687,7 @@ void SourceView::RenderAsmLine( AsmLine& line, const AddrStat& ipcnt, const Addr } else { - sprintf( buf, "...%s:%i", fileName+fnsz-(30-3-1-m_maxLine), srcline ); + sprintf( buf, "\xe2\x80\xa6%s:%i", fileName+fnsz-(30-1-1-m_maxLine), srcline ); } TextDisabledUnformatted( buf ); if( ImGui::IsItemHovered() )