tile.c
changeset 771 05946fa53085
parent 770 5280cbb5bbd4
equal deleted inserted replaced
770:5280cbb5bbd4 771:05946fa53085
   123 
   123 
   124 	if((c = sel) == nextmanaged(clients))
   124 	if((c = sel) == nextmanaged(clients))
   125 		if(!(c = nextmanaged(c->next)))
   125 		if(!(c = nextmanaged(c->next)))
   126 			return;
   126 			return;
   127 	detach(c);
   127 	detach(c);
   128 	if(clients)
   128 	attach(c);
   129 		clients->prev = c;
       
   130 	c->next = clients;
       
   131 	clients = c;
       
   132 	focus(c);
   129 	focus(c);
   133 	arrange();
   130 	arrange();
   134 }
   131 }