Wx: Implement the new debugger icons

This commit is contained in:
aldelaro5
2018-04-12 01:56:15 -04:00
parent ff59297213
commit 0f8c51dfe4
9 changed files with 128 additions and 56 deletions

View File

@ -178,6 +178,13 @@ void CCodeWindow::OnHostMessage(wxCommandEvent& event)
case IDM_UPDATE_JIT_PANE:
RequirePanel<CJitWindow>()->ViewAddr(codeview->GetSelection());
break;
case IDM_RELOAD_THEME_BITMAPS:
if (HasPanel<CBreakPointWindow>())
GetPanel<CBreakPointWindow>()->ReloadBitmaps();
if (HasPanel<CWatchWindow>())
GetPanel<CWatchWindow>()->ReloadBitmaps();
break;
}
}