summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-03-13 20:48:00 +0000
committerJames Bursa <james@netsurf-browser.org>2004-03-13 20:48:00 +0000
commit5ddcc2b4403fb37460a7e1b3cdf3acd94f1e958a (patch)
treeadcc8747a7ba71100616fd15bf23cf6087f1fd81 /render
parent3f6812c11275d7980b8216b8f556a8191a7f4b1f (diff)
downloadnetsurf-5ddcc2b4403fb37460a7e1b3cdf3acd94f1e958a.tar.gz
netsurf-5ddcc2b4403fb37460a7e1b3cdf3acd94f1e958a.tar.bz2
[project @ 2004-03-13 20:48:00 by bursa]
Remove +1 from size of inline containers. svn path=/import/netsurf/; revision=619
Diffstat (limited to 'render')
-rw-r--r--render/layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/layout.c b/render/layout.c
index c0c39526a..7a048e5d4 100644
--- a/render/layout.c
+++ b/render/layout.c
@@ -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;
}