X-Git-Url: http://pileus.org/git/?p=wmpus;a=blobdiff_plain;f=sys-x11.c;fp=sys-x11.c;h=f475a83bd015c182f7734f6042ba5a19b59310ff;hp=d50595115eb403da7352d2a0c3391ce0069693b2;hb=d7962431c1e307cc50a744b23b5aac314f4cda75;hpb=ffda75d2ef502efa2879bfbae966e24a3dd91d5c diff --git a/sys-x11.c b/sys-x11.c index d505951..f475a83 100644 --- a/sys-x11.c +++ b/sys-x11.c @@ -455,7 +455,7 @@ static void process_event(int type, XEvent *xe, win_t *root) printf("configure_req: %lx - (0x%lx) %dx%d @ %d,%d\n", cre->window, cre->value_mask, cre->height, cre->width, cre->x, cre->y); - if ((win = win_find(dpy,xe->xconfigurerequest.window,1))) { + if ((win = win_find(dpy,cre->window,1))) { XSendEvent(dpy, cre->window, False, StructureNotifyMask, &(XEvent){ .xconfigure.type = ConfigureNotify, .xconfigure.display = win->sys->dpy, @@ -629,6 +629,8 @@ void sys_show(win_t *win, state_t state) .width = screen->w + screen->sys->strut.left + screen->sys->strut.right, .height = screen->h + screen->sys->strut.top + screen->sys->strut.bottom }; + win->x = wc.x; win->y = wc.y; + win->w = wc.width; win->h = wc.height; XConfigureWindow(win->sys->dpy, win->sys->xid, CWX|CWY|CWWidth|CWHeight, &wc); XMoveResizeWindow(win->sys->dpy, win->sys->xid, wc.x, wc.y, wc.width, wc.height); } else if (state == ST_SHADE) {