From 2d0d7a28a13c7a76eda4917c58b03ad324cfe82c Mon Sep 17 00:00:00 2001 From: Lugiad <2070109+Adri1@users.noreply.github.com> Date: Thu, 26 Jun 2025 02:54:07 +0200 Subject: [PATCH] PARTY_CANCEL_BUTTON TextStyle Correction --- src/ui/text.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ui/text.ts b/src/ui/text.ts index ccd01f8bbf7..10e2bcbd148 100644 --- a/src/ui/text.ts +++ b/src/ui/text.ts @@ -359,10 +359,12 @@ export function getTextStyleOptions( switch (lang) { case "ja": styleOptions.fontSize = defaultFontSize - 46; - styleOptions.padding = { top: 16 }; + styleOptions.padding = { top: 5 }; + break; + default: + styleOptions.fontSize = defaultFontSize - 30; break; } - styleOptions.fontSize = defaultFontSize - 30; styleOptions.fontFamily = "pkmnems"; break; }