Just wanted to say that the following patch just committed yesterday has some unexpected followings; under Kde 1.1.1, some applications (16 bits apps such as Calendar 3.1 for example) appear stuck at the top of the screen - the caption is not visible, so it's difficult to move them. Also, some apps (such as Bcb3 & Bcb4 from Borland) that had this very same problem before, now have their main window appearing in the middle of the screen :-) Gerard Index: windows/x11drv/wnd.c =================================================================== RCS file: /home/wine/wine/windows/x11drv/wnd.c,v retrieving revision 1.51 diff -u -r1.51 wnd.c --- windows/x11drv/wnd.c 2000/07/28 23:04:55 1.51 +++ windows/x11drv/wnd.c 2000/07/31 14:00:13 @@ -345,7 +345,9 @@ if (size_hints) { size_hints->win_gravity = StaticGravity; - size_hints->flags = PWinGravity; + size_hints->x = cs->x; + size_hints->y = cs->y; + size_hints->flags = PWinGravity|PPosition; if (HAS_DLGFRAME(cs->style,cs->dwExStyle)) {