I think this is the best solution of multihead support
This commit is contained in:
parent
04a2b74529
commit
373b11de11
2 changed files with 7 additions and 11 deletions
16
client.c
16
client.c
|
@ -89,16 +89,12 @@ focus(Client *c) {
|
||||||
XSetWindowBorder(dpy, old->win, dc.norm[ColBorder]);
|
XSetWindowBorder(dpy, old->win, dc.norm[ColBorder]);
|
||||||
}
|
}
|
||||||
if(c) {
|
if(c) {
|
||||||
if(issel) {
|
detachstack(c);
|
||||||
detachstack(c);
|
c->snext = stack;
|
||||||
c->snext = stack;
|
stack = c;
|
||||||
stack = c;
|
grabbuttons(c, True);
|
||||||
grabbuttons(c, True);
|
XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
|
||||||
XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
|
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
|
||||||
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
XSetWindowBorder(dpy, c->win, dc.norm[ColBorder]);
|
|
||||||
}
|
}
|
||||||
else if(issel)
|
else if(issel)
|
||||||
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
|
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
|
||||||
|
|
2
event.c
2
event.c
|
@ -270,7 +270,7 @@ leavenotify(XEvent *e) {
|
||||||
|
|
||||||
if((ev->window == root) && !ev->same_screen) {
|
if((ev->window == root) && !ev->same_screen) {
|
||||||
issel = False;
|
issel = False;
|
||||||
focus(sel);
|
focus(NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue