From e0a752aa70be149e51a94b5ed6a48412417bb081 Mon Sep 17 00:00:00 2001 From: Lugiad Date: Sun, 31 Aug 2025 15:55:50 +0200 Subject: [PATCH] [UI/UX] [Localization] Korean and Chinese Visual Fixes (#6452) --- src/ui/text.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ui/text.ts b/src/ui/text.ts index 8aa50983874..bac53f81ba6 100644 --- a/src/ui/text.ts +++ b/src/ui/text.ts @@ -349,6 +349,15 @@ export function getTextStyleOptions( styleOptions.fontSize = defaultFontSize - 42; styleOptions.padding = { top: 4 }; break; + case "ko": + styleOptions.fontSize = defaultFontSize - 38; + styleOptions.padding = { top: 4, left: 6 }; + break; + case "zh-CN": + case "zh-TW": + styleOptions.fontSize = defaultFontSize - 42; + styleOptions.padding = { top: 5, left: 14 }; + break; default: styleOptions.fontSize = defaultFontSize - 30; styleOptions.padding = { left: 12 };