From d36282ae61bc2a2e341ce9bd605f29611d85d6ca Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Wed, 21 Jul 2021 12:57:02 -0700 Subject: [PATCH] Qt: Un-maximize GBA widget before resizing it --- Source/Core/DolphinQt/GBAWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/GBAWidget.cpp b/Source/Core/DolphinQt/GBAWidget.cpp index 5112b88397..1fc16d091f 100644 --- a/Source/Core/DolphinQt/GBAWidget.cpp +++ b/Source/Core/DolphinQt/GBAWidget.cpp @@ -229,6 +229,7 @@ void GBAWidget::DoState(bool export_state) void GBAWidget::Resize(int scale) { + showNormal(); resize(m_core_info.width * scale, m_core_info.height * scale); }