From 00377eec585fe17887e43e6c0c1380112c2743d6 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 14 May 2007 22:57:11 +0000 Subject: Import font containing symbols we need for list items. (Un)Install font appropriately at runtime. Make list markers use the right characters. svn path=/trunk/netsurf/; revision=3280 --- render/box_construct.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'render') diff --git a/render/box_construct.c b/render/box_construct.c index 2e59d1912..9006e9ecc 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -426,13 +426,13 @@ bool box_construct_element(xmlNode *n, struct content *content, marker->length = 3; break; case CSS_LIST_STYLE_TYPE_CIRCLE: - /* 2742 CIRCLED OPEN CENTRE EIGHT POINTED STAR*/ - marker->text = "\342\235\202"; + /* 25CB WHITE CIRCLE */ + marker->text = "\342\227\213"; marker->length = 3; break; case CSS_LIST_STYLE_TYPE_SQUARE: - /* 25A0 BLACK SQUARE */ - marker->text = "\342\226\240"; + /* 25AA BLACK SMALL SQUARE */ + marker->text = "\342\226\252"; marker->length = 3; break; case CSS_LIST_STYLE_TYPE_DECIMAL: -- cgit v1.2.3