except improvements to the mouse handling this is already nearly feature complete
authorAnselm R. Garbe <garbeam@wmii.de>
Thu, 13 Jul 2006 21:49:55 +0200
changeset 54 a64602deac83
parent 53 529901e6a227
child 55 fcbf7213d96f
except improvements to the mouse handling this is already nearly feature complete
client.c
--- a/client.c	Thu Jul 13 21:42:17 2006 +0200
+++ b/client.c	Thu Jul 13 21:49:55 2006 +0200
@@ -60,8 +60,13 @@
 void
 view(Arg *arg)
 {
+	Client *c;
+
 	tsel = arg->i;
 	arrange(NULL);
+
+	for(c = clients; c; c = next(c->next))
+		draw_client(c);
 }
 
 void