Send viewport updates in web-apps.

This commit is contained in:
John Preston 2023-09-13 09:03:39 +04:00
parent 97d93b23dc
commit 674bab69f5
1 changed files with 12 additions and 0 deletions

View File

@ -1050,6 +1050,18 @@ void Panel::processMainButtonMessage(const QJsonObject &args) {
return;
}
const auto shown = [&] {
return _mainButton && !_mainButton->isHidden();
};
const auto wasShown = shown();
const auto guard = gsl::finally([&] {
if (shown() != wasShown) {
crl::on_main(this, [=] {
sendViewport();
});
}
});
if (!_mainButton) {
if (args["is_visible"].toBool()) {
createMainButton();