commit da55fea9fd9fb2471aedbdb9f6c80ca9b92704af
parent 887fd1ead89d56b89b94244ccf0f22b99cbf0200
Author: Kris Maglione <bsdaemon@wmii.de>
Date: Mon, 26 Jun 2006 17:35:12 -0400
Don't arrange_column if the column is floating
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/wm/column.c b/cmd/wm/column.c
@@ -151,7 +151,7 @@ arrange_column(Area *a, Bool dirty)
Frame *f;
unsigned int min_height = 2 * height_of_bar();
- if(!a->frame)
+ if(!a->frame || a->floating)
return;
for(f=a->frame; f; f=f->anext, num_frames++);