comparison client.c @ 15:85763b447d0f

add dwindle_m layout
author paulo
date Mon, 09 Apr 2018 20:08:44 -0600
parents a54de16f8277
children c65d4f8dc8fd
comparison
equal deleted inserted replaced
1:39c7228ceeaa 2:90be6b144229
424 attach(c); 424 attach(c);
425 focus(c); 425 focus(c);
426 lt->arrange(); 426 lt->arrange();
427 } 427 }
428 428
429 void
430 zoom_insert(Arg *arg) {
431 func_insert(zoom, arg);
432 }
433
429 Client * 434 Client *
430 prevtiled(Client *c) { 435 prevtiled(Client *c) {
431 for(; c && (c->isversatile || !isvisible(c)); c = c->prev); 436 for(; c && (c->isversatile || !isvisible(c)); c = c->prev);
432 return c; 437 return c;
433 } 438 }