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
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

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();
}
}