Wx: Implement the new debugger icons

This commit is contained in:
aldelaro5 2018-04-12 01:56:15 -04:00
commit 0f8c51dfe4
No known key found for this signature in database
GPG key ID: 054DD3E6FF48DB71
9 changed files with 128 additions and 56 deletions

View file

@ -1107,6 +1107,12 @@ void CFrame::OnReloadThemeBitmaps(wxCommandEvent& WXUNUSED(event))
reload_event.SetEventObject(this);
wxPostEvent(GetToolBar(), reload_event);
if (m_code_window)
{
wxCommandEvent evt(wxEVT_HOST_COMMAND, IDM_RELOAD_THEME_BITMAPS);
m_code_window->GetEventHandler()->AddPendingEvent(evt);
}
GameListRefresh();
}