From 738eed39279e92367c6daaa1c8c5c80bf59a439c Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Wed, 26 Oct 2022 14:47:44 +0600 Subject: [PATCH] Revert "qt: Always resize" This reverts commit 6ac2faf2f87544e42043c8536a52b14b94909780. Breaks fullscreen scaling --- src/qt/qt_ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qt/qt_ui.cpp b/src/qt/qt_ui.cpp index 3f8dad159..09199bdac 100644 --- a/src/qt/qt_ui.cpp +++ b/src/qt/qt_ui.cpp @@ -85,7 +85,7 @@ void mouse_poll() { extern "C" int vid_resize; void plat_resize_request(int w, int h, int monitor_index) { - if (is_quit) return; + if (video_fullscreen || is_quit) return; if (vid_resize & 2) { plat_resize_monitor(fixed_size_x, fixed_size_y, monitor_index); }