shell32/ebrowser: Use proper color for pane separator.

This commit is contained in:
Nikolay Sivov 2015-08-02 23:52:43 +03:00 committed by Alexandre Julliard
parent da8fd05251
commit 118c469598
1 changed files with 1 additions and 1 deletions

View File

@ -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;