B:BD[
7.2491] → [
6.225:293]
B:BD[
6.293] → [
2.130:203]
/* Find the selected client (top of fstack) and focus the client
* following it in tiling order */
Client *c = wl_container_of(sel->link.next, c, link);
/* Skip the sentinel node if we wrap around the end of the list */
if (&c->link == &clients)
c = wl_container_of(c->link.next, c, link);
Client *c;
wl_list_for_each(c, &sel->link, link) {
if (&c->link == &clients)
continue; /* wrap past the sentinel node */
if (VISIBLEON(c, selmon))
break; /* found it */
}