Qt: Un-maximize GBA widget before resizing it

This commit is contained in:
Pokechu22 2021-07-21 12:57:02 -07:00
parent 24f052a9d3
commit d36282ae61
1 changed files with 1 additions and 0 deletions

View File

@ -229,6 +229,7 @@ void GBAWidget::DoState(bool export_state)
void GBAWidget::Resize(int scale) void GBAWidget::Resize(int scale)
{ {
showNormal();
resize(m_core_info.width * scale, m_core_info.height * scale); resize(m_core_info.width * scale, m_core_info.height * scale);
} }