Offset is absolute

This commit is contained in:
Gabriel Tofvesson 2024-10-26 01:03:14 +02:00
parent 0f18f97cfa
commit 457d6d775c

View File

@ -145,7 +145,7 @@ local function fitText(text, widthBudget, alignEnd)
return text return text
end end
local textStart = alignEnd and (#text - widthBudget + 1) or 1 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) return text:sub(textStart, textEnd)
end end