Skip to content

Commit

Permalink
Merge pull request #2780 from Anixx/patch-1
Browse files Browse the repository at this point in the history
Taskbar10: Fixed classic theme taskbar dimensions (#2316)
  • Loading branch information
Amrsatrio committed Feb 14, 2024
2 parents 3a882c7 + 61d9715 commit 88212b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ExplorerPatcher/dllmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -8098,9 +8098,9 @@ HRESULT explorer_GetThemeMargins(
}
else if (hTheme == 0xDeadBeef && iPropId == TMT_SIZINGMARGINS && iPartId == 5 && iStateId == 1)
{
pMargins->cxLeftWidth = 10;
pMargins->cxLeftWidth = 0;
pMargins->cyTopHeight = 10;
pMargins->cxRightWidth = 10;
pMargins->cxRightWidth = 0;
pMargins->cyBottomHeight = 10;
}
else if (hTheme = 0xABadBabe && iPropId == TMT_CONTENTMARGINS && iPartId == 3 && iStateId == 0)
Expand Down

0 comments on commit 88212b3

Please sign in to comment.