Skip to content

Commit 94a1140

Browse files
committed
core/popup: fix popup never becoming visible when lazy loaded
1 parent 6eb68d2 commit 94a1140

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/core/popupwindow.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ void ProxyPopupWindow::completeWindow() {
2222
this->updateTransientParent();
2323
}
2424

25-
void ProxyPopupWindow::postCompleteWindow() {}
25+
void ProxyPopupWindow::postCompleteWindow() {
26+
this->ProxyWindowBase::setVisible(this->mVisible);
27+
}
2628

2729
bool ProxyPopupWindow::deleteOnInvisible() const {
2830
// Currently crashes in normal mode, do not have the time to debug it now.

0 commit comments

Comments
 (0)