From 37d9a20b4a5177889878f933543b5bc19639c49f Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 23 Feb 2020 16:08:00 +0100 Subject: [PATCH] Use caret right to indicate inlined frames, instead of "--". --- server/TracyView.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 9f96ca18..55b48269 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -9619,7 +9619,11 @@ void View::DrawFindZone() } else { +#ifdef TRACY_EXTENDED_FONT + TextDisabledUnformatted( ICON_FA_CARET_RIGHT ); +#else TextDisabledUnformatted( "--" ); +#endif } ImGui::SameLine(); ImGui::TextUnformatted( txt ); @@ -14387,7 +14391,11 @@ void View::CallstackTooltip( uint32_t idx ) } else { +#ifdef TRACY_EXTENDED_FONT + TextDisabledUnformatted( ICON_FA_CARET_RIGHT ); +#else TextDisabledUnformatted( "--" ); +#endif } ImGui::SameLine(); if( txt[0] == '[' )