From 2b0fc5d2e8216eb3c221bc2be6c4dac5ea94f946 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Mon, 26 Jan 2004 15:07:20 +0000 Subject: [project @ 2004-01-26 15:07:20 by bursa] Fix box_create() width init. svn path=/import/netsurf/; revision=510 --- render/box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'render') diff --git a/render/box.c b/render/box.c index 9d30bbfc5..e51078a12 100644 --- a/render/box.c +++ b/render/box.c @@ -194,7 +194,7 @@ struct box * box_create(struct css_style * style, box->object_state = 0; #endif box->x = box->y = 0; - box->width = box->height = 0; + box->height = 0; return box; } -- cgit v1.2.3