Fix new animations engine bug.

This commit is contained in:
John Preston 2019-04-04 19:20:28 +04:00
parent 0744f43a0e
commit c3c46f8e29
2 changed files with 7 additions and 7 deletions

View File

@ -12,11 +12,11 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
namespace MTP {
namespace internal {
//namespace {
namespace {
int PauseLevel = 0;
//} // namespace
} // namespace
bool paused() {
return PauseLevel > 0;

View File

@ -53,7 +53,9 @@ void Basic::markStopped() {
Manager::Manager() {
Core::Sandbox::Instance().widgetUpdateRequests(
) | rpl::start_with_next([=] {
) | rpl::filter([=] {
return (_lastUpdateTime + kIgnoreUpdatesTimeout < crl::now());
}) | rpl::start_with_next([=] {
update();
}, _lifetime);
}
@ -92,11 +94,9 @@ void Manager::update() {
return;
}
const auto now = crl::now();
if (!_forceImmediateUpdate
&& (_lastUpdateTime + kIgnoreUpdatesTimeout >= now)) {
return;
if (_forceImmediateUpdate) {
_forceImmediateUpdate = false;
}
_forceImmediateUpdate = false;
schedule();
_updating = true;