client.c
changeset 62 0a4b066ce254
parent 60 24f9c674d03f
child 63 f14858218641
equal deleted inserted replaced
61:db93644de522 62:0a4b066ce254
    62 {
    62 {
    63 	Client *c;
    63 	Client *c;
    64 
    64 
    65 	tsel = arg->i;
    65 	tsel = arg->i;
    66 	arrange(NULL);
    66 	arrange(NULL);
       
    67 
       
    68 	if((c = next(clients)))
       
    69 		focus(c);
    67 
    70 
    68 	for(c = clients; c; c = next(c->next))
    71 	for(c = clients; c; c = next(c->next))
    69 		draw_client(c);
    72 		draw_client(c);
    70 	draw_bar();
    73 	draw_bar();
    71 }
    74 }