From 61d97154396a0f6796c9064339000c14ad5d483a Mon Sep 17 00:00:00 2001 From: Anixx Date: Sun, 4 Feb 2024 18:38:18 +0200 Subject: [PATCH] Update dllmain.c Fixes this: https://github.com/valinet/ExplorerPatcher/issues/2316 --- ExplorerPatcher/dllmain.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ExplorerPatcher/dllmain.c b/ExplorerPatcher/dllmain.c index 527eb27ed..0300e53a7 100644 --- a/ExplorerPatcher/dllmain.c +++ b/ExplorerPatcher/dllmain.c @@ -8034,9 +8034,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)