aewl

changeset 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
files client.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/client.c	Thu Jul 13 21:42:17 2006 +0200
     1.2 +++ b/client.c	Thu Jul 13 21:49:55 2006 +0200
     1.3 @@ -60,8 +60,13 @@
     1.4  void
     1.5  view(Arg *arg)
     1.6  {
     1.7 +	Client *c;
     1.8 +
     1.9  	tsel = arg->i;
    1.10  	arrange(NULL);
    1.11 +
    1.12 +	for(c = clients; c; c = next(c->next))
    1.13 +		draw_client(c);
    1.14  }
    1.15  
    1.16  void