summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2021-07-21 12:57:02 -0700
committerPokechu22 <Pokechu022@gmail.com>2021-07-30 18:50:45 -0700
commitd36282ae61bc2a2e341ce9bd605f29611d85d6ca (patch)
tree3c21f104283614e888ccfb4de0c11dc035811d55 /Source
parent24f052a9d3dc0d93815bc495a0865a6b07309475 (diff)
Qt: Un-maximize GBA widget before resizing it
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinQt/GBAWidget.cpp1
1 files changed, 1 insertions, 0 deletions
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);
}