From e004dc85a9ccf96a62c849a0e837f9dc16ca5eed Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 7 Mar 2019 17:00:40 +0100 Subject: [PATCH] Display waiting dots in "waiting for connection" window. --- server/TracyView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 46afecdd..c6f2ce39 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -684,6 +684,9 @@ bool View::DrawImpl() TextCentered( ICON_FA_WIFI ); #endif ImGui::TextUnformatted( "Waiting for connection..." ); + DrawWaitingDots( s_time ); + ImGui::Spacing(); + ImGui::Separator(); bool wasCancelled = ImGui::Button( "Cancel" ); ImGui::End(); return !wasCancelled;