From 4d29621e15fcfbf950165c0cda43d2dacce02af7 Mon Sep 17 00:00:00 2001 From: Lugiad <2070109+Adri1@users.noreply.github.com> Date: Thu, 26 Jun 2025 19:34:14 +0200 Subject: [PATCH] MOVE_LABEL TextStyle padding correction --- src/ui/text.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/text.ts b/src/ui/text.ts index 06553fcb05c..1af7ce95237 100644 --- a/src/ui/text.ts +++ b/src/ui/text.ts @@ -365,7 +365,7 @@ export function getTextStyleOptions( switch (lang) { case "ja": styleOptions.fontSize = defaultFontSize - 16; - styleOptions.padding = { top: -12, bottom: 4 }; + styleOptions.padding = { top: -14, bottom: 8 }; break; default: styleOptions.fontSize = defaultFontSize - 30;