Bug 3008383 had some merit, on further testing. Added something to hopefully fix the debugger updating problem for all situations.

This commit is contained in:
ugetab 2010-05-28 16:08:33 +00:00
parent d607cee1c4
commit ead5e3f1ae
1 changed files with 5 additions and 1 deletions

View File

@ -1075,7 +1075,11 @@ BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
inDebugger = true;
break;
}
case WM_ACTIVATE: {
//Prevents numerous situations where the debugger is out of date with the data
UpdateDebugger();
break;
}
case WM_SIZE: {
if(wParam == SIZE_RESTORED) //If dialog was resized
{