From: Fabian Maurer Subject: [PATCH 1/2] user32/combo: Draw comboboxes with correct background Message-Id: <20190920214533.65754-1-dark.shadow4@web.de> Date: Fri, 20 Sep 2019 23:45:32 +0200 Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46417 Signed-off-by: Fabian Maurer --- dlls/user32/combo.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dlls/user32/combo.c b/dlls/user32/combo.c index 59c2e6484c..a126922a74 100644 --- a/dlls/user32/combo.c +++ b/dlls/user32/combo.c @@ -1912,6 +1912,9 @@ LRESULT ComboWndProc_common( HWND hwnd, UINT message, WPARAM wParam, LPARAM lPar } else return CB_ERR; + case WM_CTLCOLORSTATIC: + case WM_CTLCOLOREDIT: + return (LRESULT)GetSysColorBrush(COLOR_WINDOW); case WM_DRAWITEM: case WM_DELETEITEM: case WM_COMPAREITEM: -- 2.23.0