X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/c3c94c0e0a4da1562b040a17ee670312ad8e65af..924a0888126bd8ff12312c6e3e6a33003f271b2a:/view.c diff --git a/view.c b/view.c index 5de34c0..37b4fd7 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; @@ -270,6 +273,17 @@ view(Arg *arg) arrange(NULL); } +void +viewall(Arg *arg) +{ + unsigned int i; + + for(i = 0; i < ntags; i++) + seltag[i] = True; + reorder(); + arrange(NULL); +} + void zoom(Arg *arg) {