mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-10 18:18:49 +00:00
Merge pull request #2123 from RachelBryk/nonmodal-isoprops
Make iso properties non modal.
This commit is contained in:
commit
2a41ac4072
13 changed files with 69 additions and 45 deletions
|
@ -19,6 +19,7 @@
|
|||
#include "Common/CommonFuncs.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/StringUtil.h"
|
||||
#include "Core/ActionReplay.h"
|
||||
#include "Core/HW/Memmap.h"
|
||||
#include "DolphinWX/WxUtils.h"
|
||||
#include "DolphinWX/Cheats/CheatSearchTab.h"
|
||||
|
@ -308,7 +309,7 @@ void CheatSearchTab::CreateARCode(wxCommandEvent&)
|
|||
{
|
||||
const u32 address = m_search_results[sel].address | ((m_search_type_size & ~1) << 24);
|
||||
|
||||
CreateCodeDialog arcode_dlg(this, address);
|
||||
CreateCodeDialog arcode_dlg(this, address, ActionReplay::GetARCodes());
|
||||
arcode_dlg.SetExtraStyle(arcode_dlg.GetExtraStyle() & ~wxWS_EX_BLOCK_EVENTS);
|
||||
arcode_dlg.ShowModal();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue