Author: gadamopoulos
Date: Wed May 11 19:19:03 2011
New Revision: 51674
URL:
http://svn.reactos.org/svn/reactos?rev=51674&view=rev
Log:
[shell32]
- Don't create the ShellView class with the CS_HREDRAW and CS_VREDRAW styles
- Should reduce flicker in explorer
Modified:
trunk/reactos/dll/win32/shell32/shlview.c
Modified: trunk/reactos/dll/win32/shell32/shlview.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shlview.…
==============================================================================
--- trunk/reactos/dll/win32/shell32/shlview.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/shlview.c [iso-8859-1] Wed May 11 19:19:03 2011
@@ -2115,7 +2115,7 @@
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;