[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
This commit is contained in:
David Quintana 2015-02-15 18:05:34 +00:00
parent b3038d2a51
commit 384d4f06d5

View file

@ -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)