From a075323a8017d80703fa25f55b28c4dc842b18f9 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 20 Nov 2021 01:36:05 +0100 Subject: [PATCH] Draw smaller "inline" index in callstacks. --- server/TracyView.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 6cc5f267..63806dcd 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -14052,7 +14052,9 @@ void View::DrawCallstackTable( uint32_t callstack, bool globalEntriesButton ) } else { + if( m_smallFont ) ImGui::PushFont( m_smallFont ); TextDisabledUnformatted( "inline" ); + if( m_smallFont ) ImGui::PopFont(); } ImGui::TableNextColumn(); { @@ -16187,7 +16189,9 @@ void View::DrawSampleParents() } else { + if( m_smallFont ) ImGui::PushFont( m_smallFont ); TextDisabledUnformatted( "inline" ); + if( m_smallFont ) ImGui::PopFont(); } ImGui::TableNextColumn(); {