X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=view.c;h=aa0a23a6cdfd780a07197e4aea1b99706db778b1;hb=4c368bcd24172166aab32948fc63feaa6a1bec93;hp=5de34c0b170e1efa2748cb85ca7759095c256d92;hpb=c3c94c0e0a4da1562b040a17ee670312ad8e65af;p=dwm.git diff --git a/view.c b/view.c index 5de34c0..aa0a23a 100644 --- a/view.c +++ b/view.c @@ -67,7 +67,9 @@ dofloat(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); @@ -130,7 +132,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); @@ -261,7 +265,6 @@ void view(Arg *arg) { unsigned int i; - Client *c; for(i = 0; i < ntags; i++) seltag[i] = False;