Merge pull request #9934 from Pokechu22/gba-unmaximize

Qt: Un-maximize GBA widget before resizing it
This commit is contained in:
Léo Lam
2021-07-31 04:07:28 +02:00
committed by GitHub

View File

@ -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);
}