[Debugger] Refresh breakpoints display on activate

This commit is contained in:
zilmar 2018-02-06 07:04:20 +11:00
parent 94c7a51b48
commit d7708b6952
1 changed files with 10 additions and 0 deletions

View File

@ -1439,6 +1439,16 @@ LRESULT CDebugCommandsView::OnListBoxClicked(WORD /*wNotifyCode*/, WORD wID, HWN
return FALSE;
}
LRESULT CDebugCommandsView::OnActivate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
{
if (LOWORD(wParam) == WA_ACTIVE)
{
ShowAddress(m_StartAddress, TRUE);
RefreshBreakpointList();
}
return FALSE;
}
LRESULT CDebugCommandsView::OnSizing(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
{
CRect listRect;