From 1f8de433ec29f1c56b43486b9ee3b3747d12995b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 28 Sep 2022 00:43:12 +0200 Subject: [PATCH] Mark activity when zoom animation is underway. --- server/TracyView.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index af14f3cd..a2128705 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -1290,7 +1290,8 @@ void View::HighlightThread( uint64_t thread ) bool View::WasActive() const { - return m_worker.IsConnected(); + return m_zoomAnim.active || + m_worker.IsConnected(); } }