I think this is the best solution of multihead support
authorAnselm R. Garbe <arg@suckless.org>
Tue, 23 Jan 2007 11:49:16 +0100
changeset 711 b40134b93de3
parent 710 a25294eac73a
child 712 b288b57d81f8
I think this is the best solution of multihead support
client.c
event.c
--- 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);
--- a/event.c	Mon Jan 22 16:02:37 2007 +0100
+++ b/event.c	Tue Jan 23 11:49:16 2007 +0100
@@ -270,7 +270,7 @@
 
 	if((ev->window == root) && !ev->same_screen) {
 		issel = False;
-		focus(sel);
+		focus(NULL);
 	}
 }