From 1c5d90c98abde38a44db1949dd9ca2fe2bf5eb9b Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Thu, 13 Oct 2022 20:47:02 +0200 Subject: [PATCH] Require attention after load / connect. --- server/TracyView.cpp | 2 ++ server/TracyView.hpp | 1 + 2 files changed, 3 insertions(+) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index a35bf736..f1d238ba 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -611,6 +611,8 @@ bool View::DrawImpl() return keepOpen; } + Attention( m_attnWorking ); + if( !m_uarchSet ) { m_uarchSet = true; diff --git a/server/TracyView.hpp b/server/TracyView.hpp index 98f3811c..6eb861b0 100644 --- a/server/TracyView.hpp +++ b/server/TracyView.hpp @@ -839,6 +839,7 @@ private: bool m_attnNotAvailable = false; bool m_attnDropped = false; bool m_attnFailure = false; + bool m_attnWorking = false; }; }