Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-10-13 21:47:02 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-10-13 21:47:02 +0300
commit1c5d90c98abde38a44db1949dd9ca2fe2bf5eb9b (patch)
tree16a18a7d11c6b44c7e27647a47b3eddad6ca18a3
parentd0968844d8e5cf2a5ace6a43bdc040ecced30056 (diff)
Require attention after load / connect.
-rw-r--r--server/TracyView.cpp2
-rw-r--r--server/TracyView.hpp1
2 files changed, 3 insertions, 0 deletions
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;
};
}