X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/78b050c13c8ea660ed801c21bddd2957a2bc3f40..b6ad663f87b195b1494798030f826cb2fbc71a23:/tag.c?ds=inline diff --git a/tag.c b/tag.c index a718ebd..4b6d513 100644 --- a/tag.c +++ b/tag.c @@ -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);