From 09d7b7336fa3e765fdbcc78d9c1614960decf784 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 28 Sep 2022 00:48:45 +0200 Subject: [PATCH] Mark activity when notification area is in use. --- server/TracyView.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index a2128705..5660557d 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -1291,7 +1291,9 @@ void View::HighlightThread( uint64_t thread ) bool View::WasActive() const { return m_zoomAnim.active || - m_worker.IsConnected(); + m_notificationTime > 0 || + m_worker.IsConnected() || + !m_worker.IsBackgroundDone(); } }