Mercurial > aewl
comparison client.c @ 381:b00cc483d13b
still something wrong with reorder()
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Tue, 29 Aug 2006 13:40:09 +0200 |
parents | 83576f5f0a90 |
children | 052657ff2e7b |
comparison
equal
deleted
inserted
replaced
380:4bf79305d675 | 381:b00cc483d13b |
---|---|
239 if(!c->isfloat) | 239 if(!c->isfloat) |
240 c->isfloat = trans | 240 c->isfloat = trans |
241 || (c->maxw && c->minw && | 241 || (c->maxw && c->minw && |
242 c->maxw == c->minw && c->maxh == c->minh); | 242 c->maxw == c->minw && c->maxh == c->minh); |
243 | 243 |
244 attach(c); | 244 if(clients) |
245 clients->prev = c; | |
246 c->next = clients; | |
247 clients = c; | |
245 | 248 |
246 settitle(c); | 249 settitle(c); |
247 if(isvisible(c)) | 250 if(isvisible(c)) |
248 sel = c; | 251 sel = c; |
249 arrange(NULL); | 252 arrange(NULL); |