comparison client.c @ 62:0a4b066ce254

focus on view change as well
author Anselm R. Garbe <garbeam@wmii.de>
date Fri, 14 Jul 2006 12:11:24 +0200
parents 24f9c674d03f
children f14858218641
comparison
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 }