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
commit 35baf8df67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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