From e86c43ac72f63d0e9ee9a00921eab960cd84156c Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 25 Oct 2024 18:33:31 +0200 Subject: [PATCH] Fix list element sizing --- itemcontroller.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 27f0ecc..5238fef 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -521,9 +521,9 @@ local PAGES = { countText:setText(tostring(group:getItemCount())) - local nameTextBudget = mainList:getWidth() - countText:getWidth() - 1 + local nameTextBudget = state.width - countText:getWidth() - 1 local name = fitText(group:getSimpleName(), nameTextBudget) - local padding = mainList:getWidth() - #name - countText:getWidth() + local padding = state.width - #name - countText:getWidth() nameText:setText(name) namePadding:setPadding{ right = padding }