diff options
| author | aldelaro5 <aldelaro5@gmail.com> | 2018-04-12 01:56:15 -0400 |
|---|---|---|
| committer | aldelaro5 <aldelaro5@gmail.com> | 2018-04-14 17:22:04 -0400 |
| commit | 0f8c51dfe49c98b7e77fe8a55c8fd3deafaab496 (patch) | |
| tree | 2bfcaf4e8056ac130d37a129706a3a68883da2e2 /Source/Core/DolphinWX/FrameTools.cpp | |
| parent | ff59297213f9d33df7e3acdcaea0519ec2006ea7 (diff) | |
Wx: Implement the new debugger icons
Diffstat (limited to 'Source/Core/DolphinWX/FrameTools.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/FrameTools.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp index 9959b6e5af..ddfda40ad5 100644 --- a/Source/Core/DolphinWX/FrameTools.cpp +++ b/Source/Core/DolphinWX/FrameTools.cpp @@ -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(); } |
