aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-13 21:49:55 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-13 21:49:55 +0200
commit86d9851427710ca0f3ab95ae9b6c20361b56e516 (patch)
tree810b3d77804e0952350833171370eeb13379fe60 /client.c
parent66da15324eef4f85c6dda13eba80430dc4cc97bb (diff)
downloaddwm-86d9851427710ca0f3ab95ae9b6c20361b56e516.tar.zst
except improvements to the mouse handling this is already nearly feature complete
Diffstat (limited to 'client.c')
-rw-r--r--client.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/client.c b/client.c
index 3fb2318..b2318ab 100644
--- a/client.c
+++ b/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