Fix text trimming

This commit is contained in:
Gabriel Tofvesson 2024-10-25 18:25:16 +02:00
parent 9c4605cda2
commit 0d096aecde

View File

@ -140,7 +140,7 @@ local function fitText(text, widthBudget)
if #text <= widthBudget then if #text <= widthBudget then
return text return text
end end
return text:sub(1, #widthBudget) return text:sub(1, widthBudget)
end end
local PAGES = { local PAGES = {