summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2017-10-05 19:00:39 +0300
committerRasmus Andersson <rasmus@notion.se>2017-10-05 19:00:39 +0300
commit93eb2ca2ec261a053c6a2cd16519ef8bbbe81884 (patch)
treec9c0fb0651ef7ac3d4c92f9ee3e6e781949f2618
parentd75ae361b67586e62fb9e95aeb4281e30da9f700 (diff)
downloadinter-93eb2ca2ec261a053c6a2cd16519ef8bbbe81884.tar.xz
Use explicit names table properties for bold and bold italic. Closes #34
-rwxr-xr-xmisc/ufocompile4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/ufocompile b/misc/ufocompile
index c09f24c92..6da30a5ac 100755
--- a/misc/ufocompile
+++ b/misc/ufocompile
@@ -160,12 +160,12 @@ def main():
if ALL or 'bold' in styles:
proj.generateFont(
Mix2([rg, bl], 0.65, glyphSpecializations.get('bold', {})),
- "%s/Bold/Bold/Rg" % FAMILYNAME)
+ "%s/Bold/Bold/Bd" % FAMILYNAME)
if ALL or 'bolditalic' in styles:
proj.generateFont(
Mix2([rg, bl], 0.65, glyphSpecializations.get('bold', {})),
- "%s/Bold Italic/Italic/Rg" % FAMILYNAME,
+ "%s/Bold Italic/Bold Italic/Bd" % FAMILYNAME,
italic=True, stemWidth=384, italicMeanYCenter=-825, italicNarrowAmount=1)