mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[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:
parent
e8463b3e2e
commit
033b716da1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue