mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DolphinWX: Reimplement cheat listbox updating, but without a global
Just use event handling.
This commit is contained in:
@ -17,6 +17,9 @@
|
||||
#include "DolphinWX/WxUtils.h"
|
||||
#include "DolphinWX/Cheats/CreateCodeDialog.h"
|
||||
|
||||
// Fired when an ActionReplay code is created.
|
||||
wxDEFINE_EVENT(UPDATE_CHEAT_LIST_EVENT, wxCommandEvent);
|
||||
|
||||
CreateCodeDialog::CreateCodeDialog(wxWindow* const parent, const u32 address)
|
||||
: wxDialog(parent, -1, _("Create AR Code"))
|
||||
, m_code_address(address)
|
||||
@ -95,6 +98,9 @@ void CreateCodeDialog::PressOK(wxCommandEvent& ev)
|
||||
//ActionReplay::UpdateActiveList();
|
||||
}
|
||||
|
||||
// Propagate back to the parent frame to update the cheat list.
|
||||
GetEventHandler()->AddPendingEvent(wxCommandEvent(UPDATE_CHEAT_LIST_EVENT));
|
||||
|
||||
Close();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user