fixed the issue observed by various people, that clients appeared on empty tags
Anselm R. Garbe garbeam@gmail.com
Thu, 16 Aug 2007 18:30:25 +0200
1 files changed,
3 insertions(+),
4 deletions(-)
jump to
M
client.c
→
client.c
@@ -227,9 +227,7 @@ c->isfloating = (rettrans == Success) || c->isfixed;
attach(c); attachstack(c); XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some windows require this */ - setclientstate(c, IconicState); - c->isbanned = True; - focus(c); + ban(c); arrange(); }@@ -325,7 +323,8 @@ free(c);
XSync(dpy, False); XSetErrorHandler(xerror); XUngrabServer(dpy); - arrange(); + if(state != NormalState) + arrange(); } void