From 640a0702b44f0cf352e52a4624ea637c091f69ef Mon Sep 17 00:00:00 2001 From: Vitor Kiguchi Date: Sat, 24 Apr 2021 23:44:06 -0300 Subject: [PATCH] resize-window: tweak workaround --- src/citra_qt/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index e47822e79..6ed573d55 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -1724,7 +1724,8 @@ void GMainWindow::ChangeScreenSize() { // not resize properly, when in 1x. // TODO (vitor-k): repro and report to Qt and/or find a // better workaround - QTimer::singleShot(100, this, &GMainWindow::ResizeScreen); + auto_resized = true; + QTimer::singleShot(50, this, &GMainWindow::ResizeScreen); } }