Mercurial > dwm-meillo
changeset 711:b40134b93de3
I think this is the best solution of multihead support
author | Anselm R. Garbe <arg@suckless.org> |
---|---|
date | Tue, 23 Jan 2007 11:49:16 +0100 (2007-01-23) |
parents | a25294eac73a |
children | b288b57d81f8 |
files | client.c event.c |
diffstat | 2 files changed, 7 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/client.c Mon Jan 22 16:02:37 2007 +0100 +++ b/client.c Tue Jan 23 11:49:16 2007 +0100 @@ -89,16 +89,12 @@ XSetWindowBorder(dpy, old->win, dc.norm[ColBorder]); } if(c) { - if(issel) { - detachstack(c); - c->snext = stack; - stack = c; - grabbuttons(c, True); - XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]); - XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); - } - else - XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]); + detachstack(c); + c->snext = stack; + stack = c; + grabbuttons(c, True); + XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]); + XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime); } else if(issel) XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);