Author: dquintana
Date: Tue May 20 12:32:38 2014
New Revision: 63383
URL:
http://svn.reactos.org/svn/reactos?rev=63383&view=rev
Log:
[BROWSEUI]
* Do not swap the big and small imagelist pointers. Fixes the explorer windows not having
an icon in the taskbar.
Note: the underlying issue preventing the taskbar from showing a 32x32 icon in the buttons
still exists, so other apps with the same behaviour will still fail to draw.
Modified:
branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp
Modified: branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp
URL:
http://svn.reactos.org/svn/reactos/branches/shell-experiments/dll/win32/bro…
==============================================================================
--- branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp [iso-8859-1]
(original)
+++ branches/shell-experiments/dll/win32/browseui/shellbrowser.cpp [iso-8859-1] Tue May 20
12:32:38 2014
@@ -1058,7 +1058,7 @@
index = SHMapPIDLToSystemImageListIndex(sf, pidlChild, &indexOpen);
- Shell_GetImageLists(&himlSmall, &himlLarge);
+ Shell_GetImageLists(&himlLarge, &himlSmall);
HICON icSmall = ImageList_GetIcon(himlSmall, indexOpen, 0);
HICON icLarge = ImageList_GetIcon(himlLarge, indexOpen, 0);