From 04be409a29b939ea5c3b5304a38c80aae99194d7 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Sat, 12 Oct 2024 23:56:27 +0200 Subject: [PATCH] Fix action spacing --- itemcontroller.lua | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/itemcontroller.lua b/itemcontroller.lua index 4fc3450..0064b65 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -419,7 +419,7 @@ local PAGES = { local ACTION_SPACING = 0 local actions = { - tabActionList(ACTION_INTERVAL, ACTION_COUNT, 1, ACTION_SPACING), + tabActionList(ACTION_INTERVAL, ACTION_COUNT, -1, ACTION_SPACING), List:new { [Orientation:getId()] = Orientation.HORIZONTAL, [Children:getId()] = { @@ -430,31 +430,33 @@ local PAGES = { sortButton } }, - tabActionList(ACTION_INTERVAL, ACTION_COUNT, -1, ACTION_SPACING) + tabActionList(ACTION_INTERVAL, ACTION_COUNT, 1, ACTION_SPACING) } for i=#actions+1,1,-1 do table.insert(actions, i, Element:new{ width = 0, height = 0 }) end - local function calculateActionSpaces() - local freeSpace = 0 - for i=2,#actions,2 do - freeSpace = freeSpace + actions[i]:getWidth() - end - local asymmetry = freeSpace % ((#actions - 1) / 2) - local part = (freeSpace - asymmetry) / ((#actions + 1) / 2) - for i=1,#actions,2 do - actions[i]:setWidth((i <= asymmetry and 1 or 0) + part) - end - end - - local bottomBarList = List:new { [Orientation:getId()] = Orientation.HORIZONTAL, [Children:getId()] = actions } + local function calculateActionSpaces() + local usedSpace = 0 + for i=2,#actions,2 do + usedSpace = usedSpace + actions[i]:getWidth() + end + local barWidth = bottomBarList:getWidth() + local freeSpace = barWidth - usedSpace + local asymmetry = freeSpace % ((#actions + 1) / 2) + local part = (freeSpace - asymmetry) / ((#actions + 1) / 2) + for i=1,#actions,2 do + actions[i]:setWidth((i <= asymmetry and 1 or 0) + part) + end + bottomBarList:_reload() + end + local aboveEntries = { storageSatProgress } local belowEntries = { bottomBarList }