client.c
changeset 199 955b4f217c2d
parent 198 ac90e9e4b9c9
child 200 592b26ac1acc
equal deleted inserted replaced
198:ac90e9e4b9c9 199:955b4f217c2d
   464 void
   464 void
   465 zoom(Arg *arg)
   465 zoom(Arg *arg)
   466 {
   466 {
   467 	Client *c;
   467 	Client *c;
   468 
   468 
   469 	if(!sel)
   469 	if(!sel || arrange != dotile)
   470 		return;
   470 		return;
   471 
   471 
   472 	if(sel == getnext(clients) && sel->next)  {
   472 	if(sel == getnext(clients) && sel->next)  {
   473 		if((c = getnext(sel->next)))
   473 		if((c = getnext(sel->next)))
   474 			sel = c;
   474 			sel = c;