[Debugger] Refresh breakpoints display on activate
This commit is contained in:
parent
94c7a51b48
commit
d7708b6952
|
@ -1439,6 +1439,16 @@ LRESULT CDebugCommandsView::OnListBoxClicked(WORD /*wNotifyCode*/, WORD wID, HWN
|
||||||
return FALSE;
|
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*/)
|
LRESULT CDebugCommandsView::OnSizing(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
|
||||||
{
|
{
|
||||||
CRect listRect;
|
CRect listRect;
|
||||||
|
|
Loading…
Reference in New Issue