summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2005-05-22 22:16:00 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2005-05-22 22:16:00 +0000
commit2714ddd459b558a07cc2143470f262caa4291071 (patch)
tree975c1aac2363f7d027fc25f84fc7a79b4f49e98d
parent22640f85e0d245df817df96afa18d382e3a1b49a (diff)
downloadnetsurf-2714ddd459b558a07cc2143470f262caa4291071.tar.gz
netsurf-2714ddd459b558a07cc2143470f262caa4291071.tar.bz2
[project @ 2005-05-22 22:16:00 by jmb]
Fix inversion of overline and line-through plot offsets svn path=/import/netsurf/; revision=1733
-rw-r--r--render/html_redraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/html_redraw.c b/render/html_redraw.c
index 13f1315d3..9a36613de 100644
--- a/render/html_redraw.c
+++ b/render/html_redraw.c
@@ -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;