commit d7ea20f0290f12e969e8717d6b1ed2be7898c864 parent afc961f641e0ffb9cd1deef0014b1f9db0ccff9f Author: Anselm R. Garbe <garbeam@wmii.de> Date: Thu, 2 Mar 2006 10:39:34 +0100 fixed missing page update on column destroy implication Diffstat:
| cmd/wm/client.c | | | 7 | +++++-- |
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/cmd/wm/client.c b/cmd/wm/client.c @@ -608,9 +608,12 @@ sendtoarea_client(Client *c, char *arg) { to = p->area[i]; } sendto_area(to, c); - if(!a->nclient) + if(!a->nclient) { destroy_area(a); - arrange_column(to); + arrange_page(p, True); + } + else + arrange_column(to); } void