From 9d9c15f2d16e0e4dd3126ca6a04c4f23e15d3d23 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Mon, 26 Jan 2026 18:05:16 +0100 Subject: [PATCH] fix(settings): fix alignment issues in number input (again) --- app/components/Settings/BottomScreen/NumberInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Settings/BottomScreen/NumberInput.vue b/app/components/Settings/BottomScreen/NumberInput.vue index be73863..0f838c8 100644 --- a/app/components/Settings/BottomScreen/NumberInput.vue +++ b/app/components/Settings/BottomScreen/NumberInput.vue @@ -112,7 +112,7 @@ onRender((ctx) => { // value ctx.font = "39px NDS39"; - ctx.letterSpacing = props.digits === 2 ? "3px" : "2px"; + ctx.letterSpacing = "2px"; ctx.textBaseline = "top"; ctx.fillStyle = props.selected ? APP_COLOR_TO_FONT_COLOR[app.color.hex]!