From 0d096aecde45fc7493a0103dc78c3d51f41d7ae2 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 25 Oct 2024 18:25:16 +0200 Subject: [PATCH] Fix text trimming --- itemcontroller.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index d35bb6d..27f0ecc 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -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 = {