wordpad: Prevent white flickering on window resize.

This commit is contained in:
Alexander Nicolaysen Sørnes 2007-09-11 16:11:48 +02:00 committed by Alexandre Julliard
parent 8710108b24
commit 7226f88f55
1 changed files with 1 additions and 1 deletions

View File

@ -3247,7 +3247,7 @@ int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hOldInstance, LPSTR szCmdPar
RegisterClassW(&wc);
rc = registry_read_winrect();
hMainWnd = CreateWindowExW(0, wszMainWndClass, wszAppTitle, WS_OVERLAPPEDWINDOW,
hMainWnd = CreateWindowExW(0, wszMainWndClass, wszAppTitle, WS_CLIPCHILDREN|WS_OVERLAPPEDWINDOW,
rc.left, rc.top, rc.right-rc.left, rc.bottom-rc.top, NULL, NULL, hInstance, NULL);
ShowWindow(hMainWnd, SW_SHOWDEFAULT);