mirror of
https://github.com/reactos/reactos.git
synced 2025-02-28 19:32:59 +00:00
[SHELL32] Temporarily disable LVS_EX_DOUBLEBUFFER in DefView (#7642)
Hackfix for CORE-19624 and CORE-19818 until ListView is fixed
This commit is contained in:
parent
aebaa14eba
commit
b87c6b8799
1 changed files with 2 additions and 0 deletions
|
@ -828,7 +828,9 @@ BOOL CDefView::CreateList()
|
|||
{
|
||||
dwStyle |= LVS_SHOWSELALWAYS; // MSDN says FWF_SHOWSELALWAYS is deprecated, always turn on for folders
|
||||
dwStyle |= (m_FolderSettings.fFlags & FWF_ALIGNLEFT) ? LVS_ALIGNLEFT : LVS_ALIGNTOP;
|
||||
#if 0 // FIXME: Temporarily disabled until ListView is fixed (CORE-19624, CORE-19818)
|
||||
ListExStyle |= LVS_EX_DOUBLEBUFFER;
|
||||
#endif
|
||||
}
|
||||
|
||||
ViewMode = m_FolderSettings.ViewMode;
|
||||
|
|
Loading…
Reference in a new issue