Browse Source

this variant is known to work, but focus() is ugly - we need in general a better way to handle multihead, this issel-stuff looks awkward (maybe it might be a good idea to set sel to NULL but to introduce a Client *revert which is set if a screen is unfocused, have to think about it further).

master
Anselm R. Garbe 18 years ago
parent
commit
fcd98308ba
2 changed files with 13 additions and 9 deletions
  1. +12
    -8
      client.c
  2. +1
    -1
      event.c

+ 12
- 8
client.c View File

@ -81,7 +81,7 @@ void
focus(Client *c) {
Client *old = sel;
if(!issel || (c && !isvisible(c)))
if(c && !isvisible(c))
return;
if(old && old != c) {
@ -89,14 +89,18 @@ focus(Client *c) {
XSetWindowBorder(dpy, old->win, dc.norm[ColBorder]);
}
if(c) {
detachstack(c);
c->snext = stack;
stack = c;
grabbuttons(c, True);
XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
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]);
}
else
else if(issel)
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
sel = c;
drawstatus();


+ 1
- 1
event.c View File

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


Loading…
Cancel
Save