[EXPLORER] Start menu: Fix Small Icons flag (#6651)

Follow-up to #6646.
Fix wrong flag use: #6646 (comment)
JIRA issue: CORE-19494
- Delete SmallStartMenu flag (wrong) from
  _TW_STUCKRECTS2.
- Rename _TW_STUCKRECTS2.SmallIcons as
  SmSmallIcons.
- Use SmSmallIcons flag.
This commit is contained in:
Katayama Hirofumi MZ
2024-03-22 21:15:22 +09:00
committed by GitHub
parent 2ec785b1ee
commit 17b0623cf8
5 changed files with 33 additions and 17 deletions

View File

@@ -91,12 +91,12 @@ static VOID CALLBACK CustomSetAdvanced(const CUSTOM_ENTRY *entry, BOOL bValue)
static BOOL CALLBACK CustomGetSmallStartMenu(const CUSTOM_ENTRY *entry)
{
return g_TaskbarSettings.sr.SmallStartMenu;
return g_TaskbarSettings.sr.SmSmallIcons;
}
static VOID CALLBACK CustomSetSmallStartMenu(const CUSTOM_ENTRY *entry, BOOL bValue)
{
g_TaskbarSettings.sr.SmallStartMenu = bValue;
g_TaskbarSettings.sr.SmSmallIcons = bValue;
}
static const CUSTOM_ENTRY s_CustomEntries[] =