From d4a5df0244d2fc202c7d7571bcf1aaf5972dff73 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 13 Nov 2021 22:14:47 +0100 Subject: [PATCH] Use big icon in waiting for connection dialog. --- server/TracyView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 03e766e9..f223aa28 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -717,7 +717,9 @@ bool View::DrawImpl() char tmp[2048]; sprintf( tmp, "%s###Connection", m_worker.GetAddr().c_str() ); ImGui::Begin( tmp, &keepOpen, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoCollapse ); + if( m_bigFont ) ImGui::PushFont( m_bigFont ); TextCentered( ICON_FA_WIFI ); + if( m_bigFont ) ImGui::PopFont(); ImGui::TextUnformatted( "Waiting for connection..." ); DrawWaitingDots( s_time ); ImGui::End();