From 4bd8febfdf27278e0d3e995aab9e1df8e12d63c2 Mon Sep 17 00:00:00 2001 From: minjaesong Date: Fri, 20 Mar 2026 18:48:50 +0900 Subject: [PATCH] fix: some old hangul getting wrong component --- OTFbuild/opentype_features.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OTFbuild/opentype_features.py b/OTFbuild/opentype_features.py index 9cb2530..ea291bd 100644 --- a/OTFbuild/opentype_features.py +++ b/OTFbuild/opentype_features.py @@ -273,7 +273,7 @@ def _generate_hangul_gsub(glyphs, has, jamo_data): continue for f in [0, 1]: try: - row_ng = SC.get_han_initial_row(1, idx, f) + row_ng = SC.get_han_initial_row(2, idx, f) except (ValueError, KeyError): continue jung_groups_general.setdefault((row_ng, f), []).append(jcp)