[project @ 2004-03-13 20:48:00 by bursa]

Remove +1 from size of inline containers.

svn path=/import/netsurf/; revision=619
This commit is contained in:
James Bursa 2004-03-13 20:48:00 +00:00
parent 3f6812c112
commit 5ddcc2b440
1 changed files with 1 additions and 1 deletions

View File

@ -805,7 +805,7 @@ struct box * layout_line(struct box *first, int width, int *y,
}
}
if (move_y) *y += used_height + 1;
if (move_y) *y += used_height;
return b;
}