except improvements to the mouse handling this is already nearly feature complete
This commit is contained in:
parent
66da15324e
commit
86d9851427
1 changed files with 5 additions and 0 deletions
5
client.c
5
client.c
|
@ -60,8 +60,13 @@ max(Arg *arg)
|
||||||
void
|
void
|
||||||
view(Arg *arg)
|
view(Arg *arg)
|
||||||
{
|
{
|
||||||
|
Client *c;
|
||||||
|
|
||||||
tsel = arg->i;
|
tsel = arg->i;
|
||||||
arrange(NULL);
|
arrange(NULL);
|
||||||
|
|
||||||
|
for(c = clients; c; c = next(c->next))
|
||||||
|
draw_client(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue