mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 17:00:51 +08:00
[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:
committed by
GitHub
parent
2ec785b1ee
commit
17b0623cf8
@@ -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[] =
|
||||
|
||||
Reference in New Issue
Block a user