[project @ 2005-05-22 22:16:00 by jmb]

Fix inversion of overline and line-through plot offsets

svn path=/import/netsurf/; revision=1733
This commit is contained in:
John Mark Bell 2005-05-22 22:16:00 +00:00
parent 22640f85e0
commit 2714ddd459

View File

@ -913,7 +913,7 @@ bool html_redraw_text_decoration(struct box *box,
static const css_text_decoration decoration[] = {
CSS_TEXT_DECORATION_UNDERLINE, CSS_TEXT_DECORATION_OVERLINE,
CSS_TEXT_DECORATION_LINE_THROUGH };
static const float line_ratio[] = { 0.9, 0.5, 0.1 };
static const float line_ratio[] = { 0.9, 0.1, 0.5 };
int colour;
unsigned int i;