From 373b11de11fd5cee875ef521e3ac0527565c4721 Mon Sep 17 00:00:00 2001 From: "Anselm R. Garbe" Date: Tue, 23 Jan 2007 11:49:16 +0100 Subject: I think this is the best solution of multihead support --- client.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'client.c') diff --git a/client.c b/client.c index 510ec59..5309d0e 100644 --- a/client.c +++ b/client.c @@ -89,16 +89,12 @@ focus(Client *c) { 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); -- cgit v1.2.3-54-g00ecf