summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2020-08-19 23:54:30 +0300
committerRasmus Andersson <rasmus@notion.se>2020-08-19 23:54:30 +0300
commit7d70535c01803b9c734147acb3049a74875f6356 (patch)
tree13175f4e2ba7f64cb7547cd88db3f8d6a5531ca8 /Makefile
parent05e3a4c7747886ffe8e89af9c67d20f63da0a8b7 (diff)
downloadinter-7d70535c01803b9c734147acb3049a74875f6356.tar.xz
Fixes an issue with rendering on Windows with ClearType by decomposing any components which use non-trivial transformations like rotation or shear. This increases font size a bit but not to any worrying degree. Closes #251
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bcfb1bdc3..9408bdf1c 100644
--- a/Makefile
+++ b/Makefile
@@ -185,7 +185,7 @@ build/ufo/features: src/features
# hinted TTF files via autohint
$(FONTDIR)/const-hinted/%.ttf: $(FONTDIR)/const/%.ttf
mkdir -p "$(dir $@)"
- ttfautohint --fallback-stem-width=256 --no-info "$<" "$@"
+ ttfautohint --windows-compatibility --adjust-subglyphs --no-info "$<" "$@"
# python -m ttfautohint --fallback-stem-width=256 --no-info "$<" "$@"