From 33a68534239b8dad8f586e7415856070b858364c Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sun, 1 May 2022 13:04:16 +0200 Subject: [PATCH] Use big font to print save path. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 68a51e65..a5771d3b 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -655,7 +655,9 @@ bool View::Draw() { assert( !s_instance->m_filenameStaging.empty() ); auto fn = s_instance->m_filenameStaging.c_str(); + ImGui::PushFont( s_instance->m_bigFont ); TextFocused( "Path:", fn ); + ImGui::PopFont(); ImGui::Separator(); static FileWrite::Compression comp = FileWrite::Compression::Fast;