removed ignoring SubstructureNotify suppressing on configure_client (learned this in gridwm)

This commit is contained in:
Anselm R. Garbe 2006-07-12 14:14:23 +02:00
parent 4f13adf6fd
commit 407ec20d14

View File

@ -235,9 +235,8 @@ configure_client(Client *c)
e.border_width = c->border;
e.above = None;
e.override_redirect = False;
XSelectInput(blz.dpy, c->win, CLIENT_MASK & ~StructureNotifyMask);
XSendEvent(blz.dpy, c->win, False, StructureNotifyMask, (XEvent *) & e);
XSelectInput(blz.dpy, c->win, CLIENT_MASK);
XSendEvent(blz.dpy, c->win, False,
StructureNotifyMask, (XEvent *) & e);
XSync(blz.dpy, False);
}