Author: cwittich Date: Tue Mar 17 09:59:53 2015 New Revision: 66754
URL: http://svn.reactos.org/svn/reactos?rev=66754&view=rev Log: [SHELL32] don't use 16 color icons in OpenWithDialog CORE-9379
Modified: trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp
Modified: trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/COpenWith... ============================================================================== --- trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp [iso-8859-1] (original) +++ trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp [iso-8859-1] Tue Mar 17 09:59:53 2015 @@ -981,7 +981,7 @@
/* Init treeview */ m_hTreeView = GetDlgItem(hwnd, 14002); - m_hImgList = ImageList_Create(16, 16, 0, m_pAppList->GetCount() + 1, m_pAppList->GetCount() + 1); + m_hImgList = ImageList_Create(16, 16, ILC_COLOR24 | ILC_MASK, m_pAppList->GetCount() + 1, m_pAppList->GetCount() + 1); (void)TreeView_SetImageList(m_hTreeView, m_hImgList, TVSIL_NORMAL);
/* If there are some recommendations add parent nodes: Recommended and Others */