commit 49c2f172368cb2ec192ae92212fc96c107d29ec1 parent 665671e7e0066816a528dcfea9b9a7746cb1c254 Author: Anselm R. Garbe <garbeam@wmii.de> Date: Sun, 5 Mar 2006 13:00:05 +0100 fixed last col destroy annoyance Diffstat:
| cmd/wm/area.c | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/cmd/wm/area.c b/cmd/wm/area.c @@ -148,7 +148,8 @@ detach_fromarea(Client *c) } else { Tag *t = a->tag; - destroy_area(a); + if(t->narea > 2) + destroy_area(a); arrange_tag(t, True); } }