1
0
mirror of https://github.com/wolfpld/tracy synced 2025-04-29 20:33:52 +00:00

Require attention after load / connect.

This commit is contained in:
Bartosz Taudul 2022-10-13 20:47:02 +02:00
parent d0968844d8
commit 1c5d90c98a
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3
2 changed files with 3 additions and 0 deletions

View File

@ -611,6 +611,8 @@ bool View::DrawImpl()
return keepOpen; return keepOpen;
} }
Attention( m_attnWorking );
if( !m_uarchSet ) if( !m_uarchSet )
{ {
m_uarchSet = true; m_uarchSet = true;

View File

@ -839,6 +839,7 @@ private:
bool m_attnNotAvailable = false; bool m_attnNotAvailable = false;
bool m_attnDropped = false; bool m_attnDropped = false;
bool m_attnFailure = false; bool m_attnFailure = false;
bool m_attnWorking = false;
}; };
} }