From 1b6deb7fed1650f128b18d689be385d163dd3b7e Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Thu, 24 Mar 2022 23:55:20 +0100 Subject: Improve glyphs for accents The accents are taken from the Roboto Regular font (Apache 2.0), added the dotted circle and exported with FontForge. The argument to FontForge's Import function are changed, the fifth argument controls the accuracy and needed to be lowered otherwise the grave accent wouldn't be rendered at all. --- srcs/special_font/build.pe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'srcs/special_font/build.pe') diff --git a/srcs/special_font/build.pe b/srcs/special_font/build.pe index be9c54a..4e2754d 100644 --- a/srcs/special_font/build.pe +++ b/srcs/special_font/build.pe @@ -6,7 +6,7 @@ New() i = 2 while (i < $argc) Select(Strtol($argv[i]:t:r, 16)) - Import($argv[i]) + Import($argv[i], 0, 0, 4.0, 0.1) AutoWidth(150) i++ endloop -- cgit v1.2.3