From 26d269e857c2700c5c0f0e96d073d764e09dc185 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 28 Sep 2022 01:34:31 +0200 Subject: [PATCH] Non-empty list of client broadcasts marks activity. --- profiler/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiler/src/main.cpp b/profiler/src/main.cpp index ea1dca2d..43fb1f45 100644 --- a/profiler/src/main.cpp +++ b/profiler/src/main.cpp @@ -359,7 +359,7 @@ static void DrawContents() bptr->NewFrame( display_w, display_h ); static int activeFrames = 3; - if( tracy::WasActive() || ( view && view->WasActive() ) ) + if( tracy::WasActive() || !clients.empty() || ( view && view->WasActive() ) ) { activeFrames = 3; }