From 6ac2faf2f87544e42043c8536a52b14b94909780 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Mon, 24 Oct 2022 22:58:06 +0600 Subject: [PATCH] qt: Always resize --- 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 09199bdac..3f8dad159 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 (video_fullscreen || is_quit) return; + if (is_quit) return; if (vid_resize & 2) { plat_resize_monitor(fixed_size_x, fixed_size_y, monitor_index); }