[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.

svn path=/branches/shell-experiments/; revision=63383
This commit is contained in:
David Quintana 2014-05-20 12:32:38 +00:00
parent e8463b3e2e
commit 033b716da1

View file

@ -1058,7 +1058,7 @@ HRESULT CShellBrowser::BrowseToPath(IShellFolder *newShellFolder,
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);