mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
[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:
parent
72c25cca5a
commit
585c628014
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue