From da9accfba6e8eb769dcd317185a9b57d161275b7 Mon Sep 17 00:00:00 2001 From: Denis Malikov Date: Sun, 13 Jan 2019 22:55:45 +0700 Subject: [PATCH 1/1] [COMCTL32] add padding for status bar text --- dll/win32/comctl32/status.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dll/win32/comctl32/status.c b/dll/win32/comctl32/status.c index 02e26b0a9d9..cfee259cd8d 100644 --- a/dll/win32/comctl32/status.c +++ b/dll/win32/comctl32/status.c @@ -201,6 +201,8 @@ STATUSBAR_DrawPart (const STATUS_INFO *infoPtr, HDC hdc, const STATUSWINDOWPART } else { r.left += x; #ifdef __REACTOS__ + r.left += 3; + r.right -= 3; if (!theme) DrawStatusTextW (hdc, &r, part->text, SBT_NOBORDERS); else -- 2.17.1