-
Bug
-
Resolution: Fixed
-
23w45a, 1.20.4, 23w51b, 1.20.5 Release Candidate 2, 1.20.6
-
None
-
Community Consensus
-
Internationalisation, UI
-
Normal
-
Platform
In Unifont 15.1.01 and later, Hangul glyphs (Korean characters) have been shifted one pixel to the right. In the previous version of Unifont, Hangul glyphs have empty line on its right side but it is changed to have empty line ont its left side in the new version. Because minecraft uses only 15x16 pixel of 16x16 pixel Unifont, some Hangul glyphs are rendered with some missing pixels after minecraft upgrade the Unifont to a new version. In the new version of Unifont, pixel number 1 to 15 should be used instead of 0 to 14 for Hangul glyphs. It can be done with below size_overrides.
"size_overrides": [
{ "from": "\u1100", "to": "\u11ff", "left": 1, "right": 15 },
{ "from": "\u3130", "to": "\u318f", "left": 1, "right": 15 },
{ "from": "\uac00", "to": "\ud7ff", "left": 1, "right": 15 }
]