Use big font in trace information window.

This commit is contained in:
Bartosz Taudul 2019-07-12 19:19:36 +02:00
parent 7fb9bde9e9
commit c48ab4cb23

View File

@ -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();