From 384d4f06d555dd17b70a7f530c2f522ac7a8fb7d Mon Sep 17 00:00:00 2001 From: David Quintana Date: Sun, 15 Feb 2015 18:05:34 +0000 Subject: [PATCH] [SHELL32] * Include enumeration of hidden files in the default shell view, until we have a proper way of toggling it. CORE-9192 svn path=/trunk/; revision=66301 --- reactos/dll/win32/shell32/CDefView.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/dll/win32/shell32/CDefView.cpp b/reactos/dll/win32/shell32/CDefView.cpp index cf179b241b7..5a9ee990a7c 100644 --- a/reactos/dll/win32/shell32/CDefView.cpp +++ b/reactos/dll/win32/shell32/CDefView.cpp @@ -868,7 +868,8 @@ HRESULT CDefView::FillList() TRACE("%p\n", this); /* get the itemlist from the shfolder*/ - hRes = m_pSFParent->EnumObjects(m_hWnd, SHCONTF_NONFOLDERS | SHCONTF_FOLDERS, &pEnumIDList); + /* FIXME: make showing hidden files a setting. */ + hRes = m_pSFParent->EnumObjects(m_hWnd, SHCONTF_NONFOLDERS | SHCONTF_FOLDERS | SHCONTF_INCLUDEHIDDEN, &pEnumIDList); if (hRes != S_OK) { if (hRes == S_FALSE)