Mercurial > aewl
comparison client.c @ 54:a64602deac83
except improvements to the mouse handling this is already nearly feature complete
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Thu, 13 Jul 2006 21:49:55 +0200 |
parents | 529901e6a227 |
children | fcbf7213d96f |
comparison
equal
deleted
inserted
replaced
53:529901e6a227 | 54:a64602deac83 |
---|---|
58 } | 58 } |
59 | 59 |
60 void | 60 void |
61 view(Arg *arg) | 61 view(Arg *arg) |
62 { | 62 { |
63 Client *c; | |
64 | |
63 tsel = arg->i; | 65 tsel = arg->i; |
64 arrange(NULL); | 66 arrange(NULL); |
67 | |
68 for(c = clients; c; c = next(c->next)) | |
69 draw_client(c); | |
65 } | 70 } |
66 | 71 |
67 void | 72 void |
68 tappend(Arg *arg) | 73 tappend(Arg *arg) |
69 { | 74 { |