From e35de311ed72ad2140d008ce316be92808ecb2dc Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Mon, 3 Sep 2007 15:40:24 +0000 Subject: [PATCH] Add the icon mask to the imagelist. The device manager icons now look correct svn path=/trunk/; revision=28818 --- reactos/dll/win32/setupapi/devclass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/setupapi/devclass.c b/reactos/dll/win32/setupapi/devclass.c index a6406498ba7..6cb2ed6720d 100644 --- a/reactos/dll/win32/setupapi/devclass.c +++ b/reactos/dll/win32/setupapi/devclass.c @@ -1449,7 +1449,7 @@ SetupDiGetClassImageListExW( /* 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;