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:
parent
d607cee1c4
commit
ead5e3f1ae
|
@ -1075,7 +1075,11 @@ BOOL CALLBACK DebuggerCallB(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPara
|
||||||
inDebugger = true;
|
inDebugger = true;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
case WM_ACTIVATE: {
|
||||||
|
//Prevents numerous situations where the debugger is out of date with the data
|
||||||
|
UpdateDebugger();
|
||||||
|
break;
|
||||||
|
}
|
||||||
case WM_SIZE: {
|
case WM_SIZE: {
|
||||||
if(wParam == SIZE_RESTORED) //If dialog was resized
|
if(wParam == SIZE_RESTORED) //If dialog was resized
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue