Author: gedmurphy
Date: Mon Sep 3 19:40:24 2007
New Revision: 28818
URL:
http://svn.reactos.org/svn/reactos?rev=28818&view=rev
Log:
Add the icon mask to the imagelist. The device manager icons now look correct
Modified:
trunk/reactos/dll/win32/setupapi/devclass.c
Modified: trunk/reactos/dll/win32/setupapi/devclass.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/devclas…
==============================================================================
--- trunk/reactos/dll/win32/setupapi/devclass.c (original)
+++ trunk/reactos/dll/win32/setupapi/devclass.c Mon Sep 3 19:40:24 2007
@@ -1449,7 +1449,7 @@
/* Prepare a HIMAGELIST */
InitCommonControls();
- ClassImageListData->ImageList = ImageList_Create(16, 16, ILC_COLOR32, 100,
10);
+ ClassImageListData->ImageList = ImageList_Create(16, 16, ILC_COLOR32 |
ILC_MASK, 100, 10);
if (!ClassImageListData->ImageList)
goto cleanup;