Module: wine Branch: master Commit: 127bb951e17a934a6d64b4e8554292256edeee7a URL: http://source.winehq.org/git/wine.git/?a=commit;h=127bb951e17a934a6d64b4e855...
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
---
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;