Fix export bar in accounts toggle.

This commit is contained in:
John Preston 2020-06-25 13:02:02 +04:00
parent 8ad1e8aed9
commit c19c0afe60

View File

@ -52,7 +52,9 @@ public:
}
auto progressState() const {
return ContentFromState(_settings.get(), _process->state());
return ContentFromState(
_settings.get(),
rpl::single(_state) | rpl::then(_process->state()));
}
private: