all repos — mgba @ aaf96b43cd02bfb878e04011ffb1dafe418fcd33

mGBA Game Boy Advance Emulator

Qt: Fix bug with frame not resizing properly
Jeffrey Pfau jeffrey@endrift.com
Wed, 31 Dec 2014 02:27:29 -0800
commit

aaf96b43cd02bfb878e04011ffb1dafe418fcd33

parent

794b9f0e64762c726ff3ca04b25ec2d3f01fde59

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -156,7 +156,7 @@ emit audioBufferSamplesChanged(opts->audioBuffers);

} if (opts->width && opts->height) { - m_screenWidget->setSizeHint(QSize(opts->width, opts->height)); + resizeFrame(opts->width, opts->height); } m_mruFiles = m_config->getMRU();