From 441a5e257c0d2a2b963c69b237281573ac51bf95 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Fri, 17 Aug 2018 23:56:06 +0200 Subject: [PATCH] Add wifi icon to "waiting for connection" window. --- server/TracyView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 8be324e3..0b8c322b 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -501,6 +501,9 @@ bool View::DrawImpl() char tmp[2048]; sprintf( tmp, "%s###Connection", m_worker.GetAddr().c_str() ); ImGui::Begin( tmp, nullptr, ImGuiWindowFlags_AlwaysAutoResize ); +#ifdef TRACY_EXTENDED_FONT + TextCentered( ICON_FA_WIFI ); +#endif ImGui::Text( "Waiting for connection..." ); ImGui::End(); return true;