From 94a1140aab402226736c37833267829cc2b12b6c Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Fri, 19 Apr 2024 16:14:59 -0700 Subject: [PATCH] core/popup: fix popup never becoming visible when lazy loaded --- src/core/popupwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/popupwindow.cpp b/src/core/popupwindow.cpp index 1ad4de55..e6a7f241 100644 --- a/src/core/popupwindow.cpp +++ b/src/core/popupwindow.cpp @@ -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.