I hope I got Filip's email correctly off the web. Steven, please correct me if I did not. ChangeLog Filip Navara <xnavara@xxxxxxxx> Fixed some flags in calls to CreateWindowEx Fixed Color of the splitter Index: programs/regedit/childwnd.c =================================================================== RCS file: /var/cvs/wine/programs/regedit/childwnd.c,v retrieving revision 1.2 diff -u -r1.2 childwnd.c --- programs/regedit/childwnd.c 3 Dec 2003 20:25:24 -0000 1.2 +++ programs/regedit/childwnd.c 4 Dec 2003 20:03:45 -0000 @@ -85,7 +85,7 @@ GetClientRect(hWnd, &rt); hdc = BeginPaint(hWnd, &ps); - FillRect(ps.hdc, &rt, GetStockObject(LTGRAY_BRUSH)); + FillRect(ps.hdc, &rt, GetStockObject(COLOR_BTNFACE)); EndPaint(hWnd, &ps); } Index: programs/regedit/framewnd.c =================================================================== RCS file: /var/cvs/wine/programs/regedit/framewnd.c,v retrieving revision 1.2 diff -u -r1.2 framewnd.c --- programs/regedit/framewnd.c 3 Dec 2003 20:25:24 -0000 1.2 +++ programs/regedit/framewnd.c 4 Dec 2003 20:03:05 -0000 @@ -532,7 +532,7 @@ _tcsncpy(pChildWnd->szPath, _T("My Computer"), MAX_PATH); hChildWnd = CreateWindowEx(0, szChildClass, _T("regedit child window"), /* WS_CHILD|WS_CLIPCHILDREN|WS_VISIBLE|WS_BORDER,*/ - WS_CHILD|WS_VISIBLE | WS_EX_CLIENTEDGE, + WS_CHILD|WS_VISIBLE, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, hWnd, (HMENU)0, hInst, pChildWnd); } -- Dimi.