Do not process events in main window show on Mac.

This commit is contained in:
OBattler
2025-08-15 17:43:11 +02:00
parent e9fb530b23
commit a24e4b9f15

View File

@@ -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();
}
}