Browse Source

Taskbar10: Disabled the patch for proper acrylic background on Canary builds

I'm adding this check until a proper fix is made, so that EP can run on Canary although features will be very limited
pull/2331/head
Amrsatrio 2 years ago
parent
commit
4ee742f116
  1. 5
      ExplorerPatcher/dllmain.c

5
ExplorerPatcher/dllmain.c

@ -11048,7 +11048,10 @@ DWORD Inject(BOOL bIsExplorer) @@ -11048,7 +11048,10 @@ DWORD Inject(BOOL bIsExplorer)
if (bOldTaskbar && global_rovi.dwBuildNumber >= 22572)
{
VnPatchIAT(hExplorer, "dwmapi.dll", "DwmUpdateThumbnailProperties", explorer_DwmUpdateThumbnailPropertiesHook);
PatchExplorer_UpdateWindowAccentProperties();
if (global_rovi.dwBuildNumber < 25000) // TODO Needs fixing in Canary
{
PatchExplorer_UpdateWindowAccentProperties();
}
}
if (IsWindows11())
{

Loading…
Cancel
Save