From bb206e3a19b48af987977d86ad77822439f37360 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sat, 12 Jul 2025 20:36:34 -0700 Subject: [PATCH] core/window: run window-level polish along with item polish Fixes input masks not updating after a reload. --- src/window/proxywindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window/proxywindow.cpp b/src/window/proxywindow.cpp index 81f43344..468820b7 100644 --- a/src/window/proxywindow.cpp +++ b/src/window/proxywindow.cpp @@ -283,6 +283,7 @@ void ProxyWindowBase::polishItems() { // This hack manually polishes the item tree right before showing the window so it will // always be created with the correct size. QQuickWindowPrivate::get(this->window)->polishItems(); + this->onPolished(); } void ProxyWindowBase::runLints() {