summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/fontbuild/mix.py15
1 files changed, 1 insertions, 14 deletions
diff --git a/scripts/lib/fontbuild/mix.py b/scripts/lib/fontbuild/mix.py
index bd396ed..7123213 100644
--- a/scripts/lib/fontbuild/mix.py
+++ b/scripts/lib/fontbuild/mix.py
@@ -260,20 +260,7 @@ class Master:
if anchorPath:
anchorData = json.load(open(anchorPath))
for glyphName, anchors in anchorData.items():
-
- # another bug: some entire glyphs are dropped during conversion.
- # example: gbar_uni1ABE
- try:
- glyph = self.font[glyphName]
- except KeyError:
- continue
-
- # another bug: some glyphs are decomposed during conversion, in
- # which case they unexpectedly don't drop anchors.
- # examples: uni04BA, Gbar (partially decomposed)
- if glyph.anchors:
- continue
-
+ glyph = self.font[glyphName]
for name, (x, y) in anchors.items():
glyph.appendAnchor(str(name), (x, y))