client.c
changeset 200 592b26ac1acc
parent 199 955b4f217c2d
child 202 f5b952e566da
equal deleted inserted replaced
199:955b4f217c2d 200:592b26ac1acc
   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 || arrange != dotile)
   469 	if(!sel || (arrange != dotile) || sel->isfloat)
   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;