02740: resizing the debug window, the text is only in the old area

(Can't believe people still run with live resizing/dragging turned off :)
This commit is contained in:
Aaron Giles 2008-12-14 00:33:42 +00:00
parent b58d08db4b
commit cfadc42b71

View File

@ -691,8 +691,9 @@ static LRESULT CALLBACK debugwin_window_proc(HWND wnd, UINT message, WPARAM wpar
}
// sizing: recompute child window locations
case WM_SIZE:
case WM_SIZING:
if (info->recompute_children)
if (info->recompute_children != NULL)
(*info->recompute_children)(info);
InvalidateRect(wnd, NULL, FALSE);
break;