Fixed the remove and add buttons not disabling after removing a code.

This commit is contained in:
Adam Diffin 2017-02-25 22:59:24 +00:00
parent 51136681df
commit 54f931e651
1 changed files with 2 additions and 0 deletions

View File

@ -288,4 +288,6 @@ void ActionReplayCodesPanel::OnRemoveCodeClick(wxCommandEvent&)
m_codes.erase(m_codes.begin() + idx);
m_checklist_cheats->Delete(idx);
m_was_modified = true;
UpdateModifyButtons();
}