From ed1f722c5199231654443a77be4b23308cdea154 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 7 Oct 2019 21:34:18 +0200 Subject: [PATCH] Display trace file name in trace info window. --- server/TracyView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index f4125651..643126b7 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -10208,6 +10208,7 @@ void View::DrawInfo() TextFocused( "Program:", m_worker.GetCaptureProgram().c_str() ); if( m_bigFont ) ImGui::PopFont(); TextFocused( "Capture time:", dtmp ); + if( !m_filename.empty() ) TextFocused( "File:", m_filename.c_str() ); { const auto& desc = m_userData.GetDescription(); const auto descsz = std::min( 255, desc.size() );