mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[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 ;) svn path=/trunk/; revision=58279
This commit is contained in:
@@ -1462,7 +1462,7 @@ TaskSwitchWnd_Create(IN OUT PTASK_SWITCH_WND This)
|
||||
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
|
||||
|
||||
@@ -380,7 +380,7 @@ SysPagerWnd_Create(IN OUT PSYS_PAGER_WND_DATA This)
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user