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 MTP {
namespace internal { namespace internal {
//namespace { namespace {
int PauseLevel = 0; int PauseLevel = 0;
//} // namespace } // namespace
bool paused() { bool paused() {
return PauseLevel > 0; return PauseLevel > 0;

View File

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