From a94f4bbb7a5771fd20c300893f6331aba9f4d571 Mon Sep 17 00:00:00 2001 From: okan Date: Sun, 18 May 2008 20:06:36 +0000 Subject: send the correct x/y coordinates to XConfigureWindow() fixes some windows that seem as if they don't fit; noticed by Edd Barrett. ok oga@ --- xevents.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xevents.c b/xevents.c index 54f07a9..f668961 100644 --- a/xevents.c +++ b/xevents.c @@ -141,8 +141,8 @@ xev_handle_configurerequest(struct xevent *xev, XEvent *ee) xev_reconfig(cc); } - wc.x = cc != NULL ? 0 : e->x; - wc.y = cc != NULL ? 0 : e->y; + wc.x = cc != NULL ? cc->bwidth : e->x; + wc.y = cc != NULL ? cc->bwidth : e->y; wc.width = e->width; wc.height = e->height; wc.stack_mode = Above; -- cgit 1.4.1