Qt: Fix window being too tall after exiting fullscreen (fixes #45)

This commit is contained in:
Jeffrey Pfau 2015-06-29 22:47:07 -07:00
parent df79ee19c3
commit bddebef90b
2 changed files with 2 additions and 1 deletions

View File

@ -53,6 +53,7 @@ Bugfixes:
- 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

View File

@ -476,8 +476,8 @@ void Window::exitFullScreen() {
return;
}
unsetCursor();
showNormal();
menuBar()->show();
showNormal();
}
void Window::toggleFullScreen() {