diff --git a/CHANGELOG.md b/CHANGELOG.md index bd610a721..1f286d252 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ Tested on OS builds 22000.2416, 22621.1, 22621.2134, 22621.2361, 22631.2338, and * Start10: Pin to Start/Unpin from Start has been properly fixed on Start Menu and Explorer (but not Search yet) of all Windows 11 builds. (15c07a0) * Start10: Fixed non-UWP apps not appearing on Dev channel builds 23545+. (a4f5bd0) +* File Explorer: Fixed command bar settings not being applied on non-primary Explorer instances on Windows 11. (001e8d8) Many thanks to @Amrsatrio for sustained efforts in maintaining and improving ExplorerPatcher. diff --git a/ExplorerPatcher/dllmain.c b/ExplorerPatcher/dllmain.c index 1af3d82ec..fb392f88f 100644 --- a/ExplorerPatcher/dllmain.c +++ b/ExplorerPatcher/dllmain.c @@ -11533,7 +11533,7 @@ DWORD Inject(BOOL bIsExplorer) else { CreateThread(0, 0, FixTaskbarAutohide, 0, 0, 0); - if (IsWindows11Version23H2OrHigher()) + if (!IsWindows11Version22H2Build2361OrHigher()) { RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"TaskbarGlomLevel"); RegDeleteKeyValueW(HKEY_CURRENT_USER, L"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced", L"MMTaskbarGlomLevel");