mirror of
https://github.com/libretro/mgba.git
synced 2024-11-23 16:10:01 +00:00
Qt: Fix multiplayer windows opening as the wrong size
This commit is contained in:
parent
b84c421865
commit
049e3639d1
1
CHANGES
1
CHANGES
@ -30,6 +30,7 @@ Bugfixes:
|
||||
- Qt: Fix controller axis querying
|
||||
- GBA Memory: Improve Thumb open bus behavior
|
||||
- GBA Memory: Fix 32-bit loads from unaddress cartridge space
|
||||
- Qt: Fix multiplayer windows opening as the wrong size
|
||||
Misc:
|
||||
- Qt: Show multiplayer numbers in window title
|
||||
|
||||
|
@ -658,9 +658,14 @@ void Window::setupMenu(QMenuBar* menubar) {
|
||||
}
|
||||
Window* w2 = new Window(m_config, multiplayer->attached());
|
||||
w2->setAttribute(Qt::WA_DeleteOnClose);
|
||||
#ifndef Q_OS_MAC
|
||||
w2->show();
|
||||
#endif
|
||||
w2->loadConfig();
|
||||
w2->controller()->setMultiplayerController(multiplayer);
|
||||
#ifdef Q_OS_MAC
|
||||
w2->show();
|
||||
#endif
|
||||
});
|
||||
addControlledAction(fileMenu, multiWindow, "multiWindow");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user