[PATCH 5/9] winemine: Change background color of the main window
"Andrey Semakin" <[email protected]> Mon, 6 Nov 2017 21:48:01 +0500
| Newsgroups | gmane.comp.emulators.wine.patches |
|---|---|
| Message-ID | <[email protected]> |
0005-winemine-Change-background-color-of-the-main-window.patch
(application/octet-stream, 1.1 KB)
From 6cd3fa09351b7311a19e40e1ac72ebac753c6705 Mon Sep 17 00:00:00 2001 From: Andrey Semakin <[email protected]> Date: Mon, 6 Nov 2017 13:44:16 +0500 Subject: [PATCH 5/9] winemine: Change background color of the main window Signed-off-by: Andrey Semakin <[email protected]> --- programs/winemine/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/winemine/main.c b/programs/winemine/main.c index 535dddaf52..f94e009de3 100644 --- a/programs/winemine/main.c +++ b/programs/winemine/main.c @@ -1026,7 +1026,7 @@ int WINAPI wWinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPWSTR cmdline, int c wc.hInstance = hInst; wc.hIcon = LoadIconW( hInst, MAKEINTRESOURCEW(IDI_WINEMINE) ); wc.hCursor = LoadCursorW( 0, (LPWSTR)IDI_APPLICATION ); - wc.hbrBackground = GetStockObject( BLACK_BRUSH ); + wc.hbrBackground = GetStockObject(COLOR_BTNFACE); wc.lpszMenuName = MAKEINTRESOURCEW(IDM_WINEMINE); wc.lpszClassName = appname; wc.hIconSm = LoadImageW( hInst, MAKEINTRESOURCEW(IDI_WINEMINE), IMAGE_ICON, -- 2.12.2.windows.1