core/popup: fix popup never becoming visible when lazy loaded

This commit is contained in:
outfoxxed 2024-04-19 16:14:59 -07:00
parent 6eb68d2cd7
commit 94a1140aab
Signed by: outfoxxed
GPG Key ID: 4C88A185FB89301E
1 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,9 @@ void ProxyPopupWindow::completeWindow() {
this->updateTransientParent();
}
void ProxyPopupWindow::postCompleteWindow() {}
void ProxyPopupWindow::postCompleteWindow() {
this->ProxyWindowBase::setVisible(this->mVisible);
}
bool ProxyPopupWindow::deleteOnInvisible() const {
// Currently crashes in normal mode, do not have the time to debug it now.