Browse Source

Taskbar11: Restored commit 085b3dd that I modified by accident

pull/2331/head
Amrsatrio 2 years ago
parent
commit
9f04110d72
  1. 1
      CHANGELOG.md
  2. 2
      ExplorerPatcher/dllmain.c

1
CHANGELOG.md

@ -26,6 +26,7 @@ Tested on OS builds 22000.2416, 22621.1, 22621.2134, 22621.2361, 22631.2338, and @@ -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.

2
ExplorerPatcher/dllmain.c

@ -11533,7 +11533,7 @@ DWORD Inject(BOOL bIsExplorer) @@ -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");

Loading…
Cancel
Save