From: Nikolay Sivov Subject: [PATCH 2/5] shell32/ebrowser: Use proper color for pane separator Message-Id: <55BE831B.3010108@codeweavers.com> Date: Sun, 02 Aug 2015 23:52:43 +0300 --- From d0c39a000b14bc5d942558a81f610a7a7fae585b Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Sun, 2 Aug 2015 10:05:04 +0300 Subject: [PATCH 2/5] shell32/ebrowser: Use proper color for pane separator --- dlls/shell32/ebrowser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/ebrowser.c b/dlls/shell32/ebrowser.c index afeb821..d50a4fc 100644 --- a/dlls/shell32/ebrowser.c +++ b/dlls/shell32/ebrowser.c @@ -704,7 +704,7 @@ static void initialize_navpane(ExplorerBrowserImpl *This, HWND hwnd_parent, RECT wc.hInstance = shell32_hInstance; wc.hIcon = 0; wc.hCursor = LoadCursorW(0, (LPWSTR)IDC_SIZEWE); - wc.hbrBackground = (HBRUSH)(COLOR_HIGHLIGHT + 1); + wc.hbrBackground = (HBRUSH)(COLOR_3DFACE + 1); wc.lpszMenuName = NULL; wc.lpszClassName = navpane_classname; -- 2.1.4