Module: wine Branch: stable Commit: 173ff9d5cd09dda5dc7af910f75095709241fd6a URL: http://source.winehq.org/git/wine.git/?a=commit;h=173ff9d5cd09dda5dc7af910f7...
Author: Alex Henrie alexhenrie24@gmail.com Date: Sun Mar 26 21:26:16 2017 -0600
winecfg: Paint text on About tab with the right background color.
Signed-off-by: Alex Henrie alexhenrie24@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 127bb951e17a934a6d64b4e8554292256edeee7a) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
programs/winecfg/about.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/programs/winecfg/about.c b/programs/winecfg/about.c index 09cc015..a2b4022 100644 --- a/programs/winecfg/about.c +++ b/programs/winecfg/about.c @@ -171,6 +171,7 @@ AboutDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) case IDC_ABT_PANEL_TEXT: case IDC_ABT_LICENSE_TEXT: case IDC_ABT_WEB_LINK: + SetBkColor((HDC)wParam, GetSysColor(COLOR_WINDOW)); return (INT_PTR)CreateSolidBrush(GetSysColor(COLOR_WINDOW)); } break;