From c48ab4cb23fa7e10f6e7b47c623aafa36bed9101 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 12 Jul 2019 19:19:36 +0200 Subject: [PATCH] Use big font in trace information window. --- server/TracyView.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 207c3ed6..a1dc1d56 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -8319,7 +8319,9 @@ void View::DrawInfo() ImGui::SetNextWindowSize( ImVec2( 400, 650 ), ImGuiCond_FirstUseEver ); ImGui::Begin( "Trace information", &m_showInfo ); - TextFocused( "Captured program:", m_worker.GetCaptureProgram().c_str() ); + if( m_bigFont ) ImGui::PushFont( m_bigFont ); + TextFocused( "Program:", m_worker.GetCaptureProgram().c_str() ); + if( m_bigFont ) ImGui::PopFont(); TextFocused( "Capture time:", dtmp ); ImGui::TextDisabled( "Trace version:" ); ImGui::SameLine();