Skip to content

Commit

Permalink
Taskbar10: Disabled the patch for proper acrylic background on Canary…
Browse files Browse the repository at this point in the history
… 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
  • Loading branch information
Amrsatrio committed Oct 6, 2023
1 parent bdd71ef commit 4ee742f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ExplorerPatcher/dllmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -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())
{
Expand Down

0 comments on commit 4ee742f

Please sign in to comment.