diff options
Diffstat (limited to 'client.c')
-rw-r--r-- | client.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -241,7 +241,10 @@ manage(Window w, XWindowAttributes *wa) || (c->maxw && c->minw && c->maxw == c->minw && c->maxh == c->minh); - attach(c); + if(clients) + clients->prev = c; + c->next = clients; + clients = c; settitle(c); if(isvisible(c)) |