Browse Source

applied viewsel.patch

main
Anselm R.Garbe 18 years ago
parent
commit
dfa5ea6360
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      tag.c

+ 6
- 2
tag.c View File

@ -47,7 +47,9 @@ dofloat(Arg *arg)
else
ban(c);
}
if((sel = getnext(clients))) {
if(!sel || !isvisible(sel))
sel = getnext(clients);
if(sel) {
focus(sel);
restack();
}
@ -111,7 +113,9 @@ dotile(Arg *arg)
else
ban(c);
}
if((sel = getnext(clients)))
if(!sel || !isvisible(sel))
sel = getnext(clients);
if(sel)
focus(sel);
else
XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);


Loading…
Cancel
Save