We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f492f3 commit 344aa60Copy full SHA for 344aa60
Src/StartMenu/StartMenuDLL/ItemManager.cpp
@@ -1123,6 +1123,14 @@ const CItemManager::ItemInfo *CItemManager::GetCustomIcon( const wchar_t *path,
1123
*c=0;
1124
index=-_wtol(c+1);
1125
}
1126
+ // special handling for Apps icon
1127
+ if (!text[0] && index==-IDI_APPSICON)
1128
+ {
1129
+ if (IsWin11())
1130
+ index=-IDI_APPSICON11;
1131
+ else if (GetWinVersion()==WIN_VER_WIN10)
1132
+ index=-IDI_APPSICON10;
1133
+ }
1134
return GetCustomIcon(text,index,iconSizeType,false);
1135
1136
0 commit comments