waaaaaaaaaa

This commit is contained in:
minjaesong
2026-03-02 16:48:19 +09:00
parent f4573536e4
commit 73c2b6986d
2 changed files with 24 additions and 0 deletions

View File

@@ -213,6 +213,10 @@ def build_font(assets_dir, output_path, no_bitmap=False, no_features=False):
g = glyphs[cp]
if g.props.is_illegal:
continue
# Skip C0/C1 control characters and DEL — some platforms render
# their traced bitmaps, which is undesirable.
if cp <= 0x001F or cp == 0x007F or 0x0080 <= cp <= 0x009F:
continue
name = glyph_name(cp)
if name == ".notdef":
continue