Author: akhaldi
Date: Sun Feb 3 11:11:21 2013
New Revision: 58279
URL:
http://svn.reactos.org/svn/reactos?rev=58279&view=rev
Log:
[EXPLORER_NEW]
* Add transparency to icons in the task bar and in the tray bar. Brought to you by Carlo
Bramini.
CORE-6938 #resolve #comment Committed in r58279. Grazie ;)
Modified:
trunk/reactos/base/shell/explorer-new/taskswnd.c
trunk/reactos/base/shell/explorer-new/trayntfy.c
Modified: trunk/reactos/base/shell/explorer-new/taskswnd.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer-new/ta…
==============================================================================
--- trunk/reactos/base/shell/explorer-new/taskswnd.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer-new/taskswnd.c [iso-8859-1] Sun Feb 3 11:11:21
2013
@@ -1462,7 +1462,7 @@
sizeof(TBBUTTON),
0);
- This->TaskIcons = ImageList_Create(16, 16, ILC_COLOR32, 0, 1000);
+ This->TaskIcons = ImageList_Create(16, 16, ILC_COLOR32 | ILC_MASK, 0, 1000);
SendMessage(This->hWndToolbar, TB_SETIMAGELIST, 0,
(LPARAM)This->TaskIcons);
/* Calculate the default button size. Don't save this in
This->ButtonSize.cx so that
Modified: trunk/reactos/base/shell/explorer-new/trayntfy.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer-new/tr…
==============================================================================
--- trunk/reactos/base/shell/explorer-new/trayntfy.c [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer-new/trayntfy.c [iso-8859-1] Sun Feb 3 11:11:21
2013
@@ -380,7 +380,7 @@
sizeof(TBBUTTON),
0);
- This->SysIcons = ImageList_Create(16, 16, ILC_COLOR32, 0, 1000);
+ This->SysIcons = ImageList_Create(16, 16, ILC_COLOR32 | ILC_MASK, 0, 1000);
SendMessage(This->hWndToolbar, TB_SETIMAGELIST, 0,
(LPARAM)This->SysIcons);
BtnSize.cx = BtnSize.cy = 18;