all repos — mgba @ c76b4b7108ea8f501df954259e2f6d7a6128dfac

mGBA Game Boy Advance Emulator

Qt: Fix "close" button on Overrides view
Jeffrey Pfau jeffrey@endrift.com
Tue, 20 Sep 2016 16:22:36 -0700
commit

c76b4b7108ea8f501df954259e2f6d7a6128dfac

parent

fe28120f2abb24311ae17abd60188db5d8b35205

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

jump to
M CHANGESCHANGES

@@ -3,6 +3,7 @@ Bugfixes:

- GB MBC: Fix MBC7 when size is incorrectly specified - GB Video: Setting LYC=LY during mode 2 should trigger an IRQ - GBA Cheats: Fix holding onto pointers that may get invalidated + - Qt: Fix "close" button on Overrides view Misc: - All: Only update version info if needed
M src/platform/qt/OverrideView.cppsrc/platform/qt/OverrideView.cpp

@@ -88,6 +88,7 @@ m_ui.tabWidget->removeTab(m_ui.tabWidget->indexOf(m_ui.tabGB));

#endif connect(m_ui.buttonBox, SIGNAL(accepted()), this, SLOT(saveOverride())); + connect(m_ui.buttonBox, SIGNAL(rejected()), this, SLOT(close())); if (controller->isLoaded()) { gameStarted(controller->thread());