Commit 86d9851

Anselm R. Garbe <garbeam@wmii.de>
2006-07-13 15:49:55
except improvements to the mouse handling this is already nearly feature complete
1 parent 66da153
Changed files (1)
client.c
@@ -60,8 +60,13 @@ max(Arg *arg)
 void
 view(Arg *arg)
 {
+	Client *c;
+
 	tsel = arg->i;
 	arrange(NULL);
+
+	for(c = clients; c; c = next(c->next))
+		draw_client(c);
 }
 
 void