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 internal {
|
||||
//namespace {
|
||||
namespace {
|
||||
|
||||
int PauseLevel = 0;
|
||||
|
||||
//} // namespace
|
||||
} // namespace
|
||||
|
||||
bool paused() {
|
||||
return PauseLevel > 0;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue