commit fa5b4b2402b8bae8086da88f8b8ebe857183f205
parent b2370513b8f29122f5556bacd4bb01545747f747
Author: Kris Maglione <jg@suckless.org>
Date: Sun, 11 Feb 2007 12:36:39 -0500
Fixed there appearing to be an empty column
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/area.c b/area.c
@@ -52,7 +52,7 @@ create_area(View *v, Area *pos, unsigned int w) {
w = min_width;
if(col_num && (col_num * min_width + w) > screen->rect.width)
return nil;
- if(i)
+ if(pos)
scale_view(v, screen->rect.width - w);
a = ixp_emallocz(sizeof(Area));