unfloatvisible.c (268B)
1 void 2 unfloatvisible(const Arg *arg) 3 { 4 Client *c; 5 6 for (c = selmon->clients; c; c = c->next) 7 if (ISVISIBLE(c) && c->isfloating) 8 c->isfloating = c->isfixed; 9 10 if (arg && arg->v) 11 setlayout(arg); 12 else 13 arrange(selmon); 14 } 15