|
|
|
@ -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);
|
|
|
|
|