From 41b0ec5fc069271e703dec42766dc15c462b26fa Mon Sep 17 00:00:00 2001 From: xiaoxustudio <1783558957@qq.com> Date: Sat, 3 Jan 2026 21:02:57 +0800 Subject: [PATCH] change: rename to Line_height --- packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx b/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx index 58194f5aa..1107f0f17 100644 --- a/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx +++ b/packages/webgal/src/Stage/TextBox/IMSSTextbox.tsx @@ -189,7 +189,7 @@ export default function IMSSTextbox(props: ITextboxProps) { const userDataState = useSelector((state: RootState) => state.userData); const lineHeightValue = textSizeState === textSize.medium ? 2.2 : 2; - const textLineHeight = userDataState.globalGameVar.LineHeight; + const textLineHeight = userDataState.globalGameVar.Line_height; const finalTextLineHeight = textLineHeight ? Number(textLineHeight) : lineHeightValue; const lineHeightCssStr = `line-height: ${finalTextLineHeight}em`; const lhCss = css(lineHeightCssStr);