removed the if(clients) check from popping code

This commit is contained in:
Anselm R.Garbe 2006-08-11 08:34:42 +02:00
parent 4ee661d908
commit 735ca9ccd6
1 changed files with 1 additions and 2 deletions

View File

@ -477,8 +477,7 @@ zoom(Arg *arg)
if(sel->next)
sel->next->prev = sel->prev;
sel->prev = NULL;
if(clients)
clients->prev = sel;
clients->prev = sel;
sel->next = clients;
clients = sel;
arrange(NULL);