1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Mark activity when zoom animation is underway.

This commit is contained in:
Bartosz Taudul
2022-09-28 00:43:12 +02:00
parent 03a17c621e
commit 1f8de433ec
+2 -1
View File
@@ -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();
}
}