From 434cdbdd46bf03f3b803ced8a3b3ba8e9b5b3c0b Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Fri, 27 May 2022 21:55:03 +0300 Subject: [PATCH] Start10: Fixed a bug in Windows 10 where the Start menu was centered by default --- ExplorerPatcher/dllmain.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ExplorerPatcher/dllmain.c b/ExplorerPatcher/dllmain.c index f67e274..131ce58 100644 --- a/ExplorerPatcher/dllmain.c +++ b/ExplorerPatcher/dllmain.c @@ -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"),