added some new convenience functions

This commit is contained in:
Anselm R. Garbe
2007-02-19 13:42:39 +01:00
parent 5d9146ff37
commit 30af19d442
4 changed files with 40 additions and 30 deletions

5
tile.c
View File

@ -125,10 +125,7 @@ zoom(Arg *arg) {
if(!(c = nextmanaged(c->next)))
return;
detach(c);
if(clients)
clients->prev = c;
c->next = clients;
clients = c;
attach(c);
focus(c);
arrange();
}