Skip to content

Commit

Permalink
fix: フォント置き換え処理を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
pakutoma committed Apr 17, 2021
1 parent d640c20 commit b714419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/juglans_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def setFontProp(font, fontInfo):
# 文字の置換え
print("merge ReplaceParts")
for glyph in fRp.glyphs():
if glyph.unicode in (0x002a): # ASTERISK
if glyph.unicode in (0x002a,): # ASTERISK
select(fRp, glyph.glyphname)
fRp.copy()
select(fIn, glyph.glyphname)
Expand Down

0 comments on commit b714419

Please sign in to comment.