fixed missing page update on column destroy implication

This commit is contained in:
Anselm R. Garbe 2006-03-02 10:39:34 +01:00
parent afc961f641
commit d7ea20f029

View File

@ -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