From 2f7061b894af10797003eaa37a3fb8c3aeeaf079 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Sat, 5 May 2012 16:00:14 +0000 Subject: Reject non-scalable BulletAPI fonts svn path=/trunk/netsurf/; revision=13906 --- amiga/gui_options.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'amiga') diff --git a/amiga/gui_options.c b/amiga/gui_options.c index 885962bf5..cdaa04912 100755 --- a/amiga/gui_options.c +++ b/amiga/gui_options.c @@ -912,6 +912,7 @@ void ami_gui_opts_open(void) GA_RelVerify, TRUE, GETFONT_TextAttr, &fontsans, GETFONT_OTagOnly, TRUE, + GETFONT_ScalableOnly, TRUE, GetFontEnd, CHILD_Label, LabelObject, LABEL_Text, gadlab[GID_OPTS_FONT_SANS], @@ -921,6 +922,7 @@ void ami_gui_opts_open(void) GA_RelVerify, TRUE, GETFONT_TextAttr, &fontserif, GETFONT_OTagOnly, TRUE, + GETFONT_ScalableOnly, TRUE, GetFontEnd, CHILD_Label, LabelObject, LABEL_Text, gadlab[GID_OPTS_FONT_SERIF], @@ -930,6 +932,7 @@ void ami_gui_opts_open(void) GA_RelVerify, TRUE, GETFONT_TextAttr, &fontmono, GETFONT_OTagOnly, TRUE, + GETFONT_ScalableOnly, TRUE, GETFONT_FixedWidthOnly, TRUE, GetFontEnd, CHILD_Label, LabelObject, @@ -940,6 +943,7 @@ void ami_gui_opts_open(void) GA_RelVerify, TRUE, GETFONT_TextAttr, &fontcursive, GETFONT_OTagOnly, TRUE, + GETFONT_ScalableOnly, TRUE, GetFontEnd, CHILD_Label, LabelObject, LABEL_Text, gadlab[GID_OPTS_FONT_CURSIVE], @@ -949,6 +953,7 @@ void ami_gui_opts_open(void) GA_RelVerify, TRUE, GETFONT_TextAttr, &fontfantasy, GETFONT_OTagOnly, TRUE, + GETFONT_ScalableOnly, TRUE, GetFontEnd, CHILD_Label, LabelObject, LABEL_Text, gadlab[GID_OPTS_FONT_FANTASY], @@ -958,6 +963,7 @@ void ami_gui_opts_open(void) GA_RelVerify, TRUE, GETFONT_TextAttr, &fontunicode, GETFONT_OTagOnly, TRUE, + GETFONT_ScalableOnly, TRUE, GetFontEnd, CHILD_Label, LabelObject, LABEL_Text, gadlab[GID_OPTS_FONT_UNICODE], -- cgit v1.2.3