From 457d6d775c865524f3d48cae0598e79712ac95e2 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 26 Oct 2024 01:03:14 +0200 Subject: [PATCH] Offset is absolute --- itemcontroller.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index c94731f..7b01cd5 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -145,7 +145,7 @@ local function fitText(text, widthBudget, alignEnd) return text end local textStart = alignEnd and (#text - widthBudget + 1) or 1 - local textEnd = (alignEnd and #text - textStart) or widthBudget + local textEnd = (alignEnd and #text) or widthBudget return text:sub(textStart, textEnd) end