Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split kerning by script, not by direction #636

Merged
merged 17 commits into from
Jul 21, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Lib/ufo2ft/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,14 @@ def classifyGlyphs(unicodeFunc, cmap, gsub=None):
glyphSets = {}
neutralGlyphs = set()
for uv, glyphName in cmap.items():
key = unicodeFunc(uv)
if key is None:
key_or_keys = unicodeFunc(uv)
if key_or_keys is None:
neutralGlyphs.add(glyphName)
elif isinstance(key_or_keys, (list, set)):
simoncozens marked this conversation as resolved.
Show resolved Hide resolved
for key in key_or_keys:
glyphSets.setdefault(key, set()).add(glyphName)
else:
glyphSets.setdefault(key, set()).add(glyphName)
glyphSets.setdefault(key_or_keys, set()).add(glyphName)

if gsub is not None:
if neutralGlyphs:
Expand Down