mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix window being too tall after exiting fullscreen (fixes #45)
This commit is contained in:
parent
df79ee19c3
commit
bddebef90b
1
CHANGES
1
CHANGES
|
@ -53,6 +53,7 @@ Bugfixes:
|
||||||
- GBA Audio: Fix sample order in audio channel 3
|
- GBA Audio: Fix sample order in audio channel 3
|
||||||
- GBA Audio: Fix 8-bit writes to audio channel 3 frequency
|
- GBA Audio: Fix 8-bit writes to audio channel 3 frequency
|
||||||
- ARM7: ARMHotplugDetach should call deinit
|
- ARM7: ARMHotplugDetach should call deinit
|
||||||
|
- Qt: Fix window being too tall after exiting fullscreen
|
||||||
Misc:
|
Misc:
|
||||||
- Qt: Handle saving input settings better
|
- Qt: Handle saving input settings better
|
||||||
- Debugger: Free watchpoints in addition to breakpoints
|
- Debugger: Free watchpoints in addition to breakpoints
|
||||||
|
|
|
@ -476,8 +476,8 @@ void Window::exitFullScreen() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
unsetCursor();
|
unsetCursor();
|
||||||
showNormal();
|
|
||||||
menuBar()->show();
|
menuBar()->show();
|
||||||
|
showNormal();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Window::toggleFullScreen() {
|
void Window::toggleFullScreen() {
|
||||||
|
|
Loading…
Reference in New Issue