This commit is contained in:
subframe7536 2025-02-19 16:05:31 +08:00
parent a49e8e2481
commit 97ddc901b8
2 changed files with 5 additions and 6 deletions

View file

@ -1174,11 +1174,9 @@ def main():
_build_cn() _build_cn()
if font_config.use_cn_both: if font_config.use_cn_both and font_config.toggle_nf_cn_config():
result = font_config.toggle_nf_cn_config() build_option.load_cn_dir_and_suffix(font_config.should_build_nf_cn())
if result: _build_cn()
build_option.load_cn_dir_and_suffix(font_config.should_build_nf_cn())
_build_cn()
build_option.is_cn_built = True build_option.is_cn_built = True

View file

@ -203,8 +203,9 @@ def verify_glyph_width(font: TTFont, expect_widths: list[int], forgive: bool):
print(f"Every glyph's width should be in {expect_widths}, but these are not:") print(f"Every glyph's width should be in {expect_widths}, but these are not:")
for item in result: for item in result:
print(f"{item[0]} => {item[1]}") print(f"{item[0]} => {item[1]}")
if forgive: if forgive:
print("[WARN] Forgive it") print("Forgive it")
else: else:
raise Exception( raise Exception(
f"The font may contain glyphs that width is not in {expect_widths}, which may broke monospace rule." f"The font may contain glyphs that width is not in {expect_widths}, which may broke monospace rule."