wordpad: Prevent white flickering on window resize.
This commit is contained in:
parent
8710108b24
commit
7226f88f55
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue