浏览代码

I think this is the best solution of multihead support

Anselm R. Garbe 19 年之前
父节点
当前提交
373b11de11
共有 2 个文件被更改,包括 7 次插入11 次删除
  1. 6 10
      client.c
  2. 1 1
      event.c

+ 6 - 10
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);

+ 1 - 1
event.c

@@ -270,7 +270,7 @@ leavenotify(XEvent *e) {
 
 	if((ev->window == root) && !ev->same_screen) {
 		issel = False;
-		focus(sel);
+		focus(NULL);
 	}
 }