projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
66da153
)
except improvements to the mouse handling this is already nearly feature complete
author
Anselm R. Garbe
<garbeam@wmii.de>
Thu, 13 Jul 2006 19:49:55 +0000
(21:49 +0200)
committer
Anselm R. Garbe
<garbeam@wmii.de>
Thu, 13 Jul 2006 19:49:55 +0000
(21:49 +0200)
client.c
patch
|
blob
|
history
diff --git
a/client.c
b/client.c
index 3fb2318bfa064998e5e304d053200223820e5c1b..b2318ab4618794e00a1de612bec7c477537b8f09 100644
(file)
--- 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