mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[EXPLORER] Fix taskbar large icon for some apps
Addendum to 0e8cf6f
(#5465).
CORE-11698
This commit is contained in:
parent
0160354145
commit
9049638dac
1 changed files with 2 additions and 2 deletions
|
@ -512,11 +512,11 @@ public:
|
||||||
}
|
}
|
||||||
#undef GET_ICON
|
#undef GET_ICON
|
||||||
|
|
||||||
hIcon = (HICON)GetClassLongPtr(hwnd, GCLP_HICONSM);
|
hIcon = (HICON)GetClassLongPtr(hwnd, g_TaskbarSettings.bSmallIcons ? GCLP_HICONSM : GCLP_HICON);
|
||||||
if (hIcon)
|
if (hIcon)
|
||||||
return hIcon;
|
return hIcon;
|
||||||
|
|
||||||
return (HICON)GetClassLongPtr(hwnd, GCLP_HICON);
|
return (HICON)GetClassLongPtr(hwnd, g_TaskbarSettings.bSmallIcons ? GCLP_HICON : GCLP_HICONSM);
|
||||||
}
|
}
|
||||||
|
|
||||||
INT UpdateTaskItemButton(IN PTASK_ITEM TaskItem)
|
INT UpdateTaskItemButton(IN PTASK_ITEM TaskItem)
|
||||||
|
|
Loading…
Reference in a new issue