| commit | 083a28fec3f92087f3ca92f3f7c07b94e1a68d4f | [log] [tgz] |
|---|---|---|
| author | Jean-Claude Batista <jcb@macadamian.com> | Tue Aug 01 00:18:56 2000 +0000 |
| committer | Alexandre Julliard <julliard@winehq.org> | Tue Aug 01 00:18:56 2000 +0000 |
| tree | 4cf8cfad8853e4e0717b6b843a0bbacad0f106c2 | |
| parent | 646c562f9c656e94a5c77a7d7885e78a945d615b [diff] |
Provide position hints for window managers.
diff --git a/windows/x11drv/wnd.c b/windows/x11drv/wnd.c index 7eb3554..75bc564 100644 --- a/windows/x11drv/wnd.c +++ b/windows/x11drv/wnd.c
@@ -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)) {