[shell32]

- Don't create the ShellView class with the CS_HREDRAW and CS_VREDRAW styles
- Should reduce flicker in explorer

svn path=/trunk/; revision=51674
This commit is contained in:
Giannis Adamopoulos 2011-05-11 19:19:03 +00:00
parent 72c25cca5a
commit 585c628014

View file

@ -2115,7 +2115,7 @@ static HRESULT WINAPI IShellView_fnCreateViewWindow(
if(!GetClassInfoW(shell32_hInstance, SV_CLASS_NAME, &wc))
{
ZeroMemory(&wc, sizeof(wc));
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.style = 0;
wc.lpfnWndProc = ShellView_WndProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;