From a24e4b9f15eb082157fd9e38fd18271d229309f5 Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 15 Aug 2025 17:43:11 +0200 Subject: [PATCH] Do not process events in main window show on Mac. --- src/qt/qt_mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qt/qt_mainwindow.cpp b/src/qt/qt_mainwindow.cpp index 911310b68..83c31cbcb 100644 --- a/src/qt/qt_mainwindow.cpp +++ b/src/qt/qt_mainwindow.cpp @@ -1051,7 +1051,9 @@ MainWindow::showEvent(QShowEvent *event) } if (window_remember && vid_resize == 1) { ui->stackedWidget->setFixedSize(window_w, window_h); +#ifndef Q_OS_MACOS QApplication::processEvents(); +#endif this->adjustSize(); } }