From c28114732a96c3a0a476fbf85cf4711405e6e8cc Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 9 May 2009 14:30:17 +0000 Subject: Adjust minimum font size svn path=/trunk/netsurf/; revision=7450 --- amiga/font.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga') diff --git a/amiga/font.c b/amiga/font.c index d5e36013d..1a02fe41a 100644 --- a/amiga/font.c +++ b/amiga/font.c @@ -282,8 +282,8 @@ struct OutlineFont *ami_open_outline_font(const struct css_style *style) ysize = css_len2pt(&style->font_size.value.length, style); - if(ysize < option_font_min_size) - ysize = option_font_min_size; + if(ysize < (option_font_min_size / 10)) + ysize = option_font_min_size / 10; if(ESetInfo(&ofont->olf_EEngine, OT_DeviceDPI,(72<<16) | 72, -- cgit v1.2.3