mirror of https://github.com/procxx/kepka.git
Fix new animations engine bug.
This commit is contained in:
parent
0744f43a0e
commit
c3c46f8e29
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue