From b682523066c800a0698a3c5863e3a27288163454 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 13 Dec 2008 23:20:49 +0000 Subject: Minor improvements to output. svn path=/trunk/netsurf/; revision=5905 --- amiga/font.c | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) (limited to 'amiga/font.c') diff --git a/amiga/font.c b/amiga/font.c index 2096ed38b..f495427a8 100644 --- a/amiga/font.c +++ b/amiga/font.c @@ -204,15 +204,7 @@ struct TextFont *ami_open_font(struct css_style *style) } */ - switch(style->font_size.size) - { - case CSS_FONT_SIZE_LENGTH: - tattr.tta_YSize = (UWORD)style->font_size.value.length.value; - break; - default: - printf("FONT SIZE TYPE: %ld\n",style->font_size.size); - break; - } + tattr.tta_YSize = css_len2px(&style->font_size.value.length, style); if(tattr.tta_YSize < option_font_min_size) tattr.tta_YSize = option_font_min_size; @@ -282,15 +274,7 @@ struct OutlineFont *ami_open_outline_font(struct css_style *style) /* see diskfont implementation for currently unimplemented bold/italic stuff */ - switch(style->font_size.size) - { - case CSS_FONT_SIZE_LENGTH: - ysize = style->font_size.value.length.value; - break; - default: - printf("FONT SIZE TYPE: %ld\n",style->font_size.size); - break; - } + ysize = css_len2px(&style->font_size.value.length, style); if(ysize < option_font_min_size) ysize = option_font_min_size; -- cgit v1.2.3