Mercurial > dwm-meillo
changeset 712:b288b57d81f8
this version should also work with cornercases (like unmanage during !issel, etc.)
author | Anselm R. Garbe <arg@suckless.org> |
---|---|
date | Tue, 23 Jan 2007 12:00:49 +0100 |
parents | b40134b93de3 |
children | ef2c267884f3 |
files | client.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/client.c Tue Jan 23 11:49:16 2007 +0100 +++ b/client.c Tue Jan 23 12:00:49 2007 +0100 @@ -79,15 +79,16 @@ void focus(Client *c) { - Client *old = sel; - if(c && !isvisible(c)) return; - if(old && old != c) { - grabbuttons(old, False); - XSetWindowBorder(dpy, old->win, dc.norm[ColBorder]); + if(sel && sel != c) { + grabbuttons(sel, False); + XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]); } + sel = c; + if(!issel) + return; if(c) { detachstack(c); c->snext = stack; @@ -96,9 +97,8 @@ XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]); XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); } - else if(issel) + else XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime); - sel = c; drawstatus(); }