Mark activity when notification area is in use.

This commit is contained in:
Bartosz Taudul 2022-09-28 00:48:45 +02:00
parent 1f8de433ec
commit 09d7b7336f
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -1291,7 +1291,9 @@ void View::HighlightThread( uint64_t thread )
bool View::WasActive() const
{
return m_zoomAnim.active ||
m_worker.IsConnected();
m_notificationTime > 0 ||
m_worker.IsConnected() ||
!m_worker.IsBackgroundDone();
}
}