diff options
| author | Claudine Peyrat <88194877+claudinepeyrat06@users.noreply.github.com> | 2025-06-25 10:30:24 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-25 10:30:24 +0200 |
| commit | a0a3fab4c9578027ae9af4aa2eec0b3a363df20c (patch) | |
| tree | 4985e5ddd1a2bec476df65b97e613f435f4b998b /lib/lettering/glyph.py | |
| parent | 2134897db8f0893c8e9a64286eeb76c770790639 (diff) | |
switch from NFKC to NFC normalization form in the lettering tool (#3828)
* switch from NFKC to NFC
* Additional normalization.
---------
Co-authored-by: CapellanCitizen <>
Diffstat (limited to 'lib/lettering/glyph.py')
| -rw-r--r-- | lib/lettering/glyph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lettering/glyph.py b/lib/lettering/glyph.py index fd1e1985..98f69ecb 100644 --- a/lib/lettering/glyph.py +++ b/lib/lettering/glyph.py @@ -39,7 +39,7 @@ class Glyph(object): self.name = group.label if len(self.name) > 11: - self.name = normalize('NFKC', self.name[11:]) + self.name = normalize('NFC', self.name[11:]) self._process_baseline(group.getroottree().getroot()) self.clips = self._process_clips(group) self.node = self._process_group(group) |
