all repos — mgba @ bddebef90b5726534b04e921c2f19c2059c343ea

mGBA Game Boy Advance Emulator

Qt: Fix window being too tall after exiting fullscreen (fixes #45)
Jeffrey Pfau jeffrey@endrift.com
Mon, 29 Jun 2015 22:47:07 -0700
commit

bddebef90b5726534b04e921c2f19c2059c343ea

parent

df79ee19c31a6c8202b2e4a19e88fdcde9a66c25

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

jump to
M CHANGESCHANGES

@@ -53,6 +53,7 @@ - Util: Allow loading IPS patches that grow the ROM

- GBA Audio: Fix sample order in audio channel 3 - GBA Audio: Fix 8-bit writes to audio channel 3 frequency - ARM7: ARMHotplugDetach should call deinit + - Qt: Fix window being too tall after exiting fullscreen Misc: - Qt: Handle saving input settings better - Debugger: Free watchpoints in addition to breakpoints
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -476,8 +476,8 @@ if (!isFullScreen()) {

return; } unsetCursor(); - showNormal(); menuBar()->show(); + showNormal(); } void Window::toggleFullScreen() {