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