foo 0d40590c
Anselm R. Garbe · 2007-07-30 21:03 1 file(s) · +1 −0
client.c +1 −0
311 311
unban(Client *c) {
312 312
	if(!c->isbanned)
313 313
		return;
314 +
	XMoveWindow(dpy, c->win, c->x, c->y); /* some windows require this */
314 315
	XMapWindow(dpy, c->win);
315 316
	setclientstate(c, NormalState);
316 317
	c->isbanned = False;