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
return text
end
return text:sub(1, #widthBudget)
return text:sub(1, widthBudget)
end
local PAGES = {