Browse Source

Start10: Fixed a bug in Windows 10 where the Start menu was centered by default

pull/1138/head
Valentin Radu 4 years ago
parent
commit
434cdbdd46
  1. 3
      ExplorerPatcher/dllmain.c

3
ExplorerPatcher/dllmain.c

@ -10594,7 +10594,8 @@ void StartMenu_LoadSettings(BOOL bRestartIfChanged) @@ -10594,7 +10594,8 @@ void StartMenu_LoadSettings(BOOL bRestartIfChanged)
dwStartShowClassicMode = dwVal;
dwSize = sizeof(DWORD);
dwVal = 1;
if (IsWindows11()) dwVal = 1;
else dwVal = 0;
RegQueryValueExW(
hKey,
TEXT("TaskbarAl"),

Loading…
Cancel
Save