Fix group list padding issue

This commit is contained in:
Gabriel Tofvesson 2024-10-13 00:03:49 +02:00
parent 04be409a29
commit 343aa69a46

View File

@ -416,7 +416,7 @@ local PAGES = {
local ACTION_COUNT = 2 local ACTION_COUNT = 2
local ACTION_INTERVAL = 5 local ACTION_INTERVAL = 5
local ACTION_SPACING = 0 local ACTION_SPACING = 1
local actions = { local actions = {
tabActionList(ACTION_INTERVAL, ACTION_COUNT, -1, ACTION_SPACING), tabActionList(ACTION_INTERVAL, ACTION_COUNT, -1, ACTION_SPACING),
@ -443,10 +443,15 @@ local PAGES = {
} }
local function calculateActionSpaces() local function calculateActionSpaces()
if #actions == 1 then
return -- NOP for single padding element
end
local usedSpace = 0 local usedSpace = 0
for i=2,#actions,2 do for i=2,#actions,2 do
usedSpace = usedSpace + actions[i]:getWidth() usedSpace = usedSpace + actions[i]:getWidth()
end end
local barWidth = bottomBarList:getWidth() local barWidth = bottomBarList:getWidth()
local freeSpace = barWidth - usedSpace local freeSpace = barWidth - usedSpace
local asymmetry = freeSpace % ((#actions + 1) / 2) local asymmetry = freeSpace % ((#actions + 1) / 2)
@ -617,7 +622,7 @@ local PAGES = {
local name = fitText(group:getSimpleName(), nameTextBudget) local name = fitText(group:getSimpleName(), nameTextBudget)
nameText:setText(name) nameText:setText(name)
namePadding:setPadding{ right = nameTextBudget - #name } namePadding:setPadding{ right = nameTextBudget - #name + 1 }
listEntry:_reload() listEntry:_reload()
listEntry:setOnClick(function() listEntry:setOnClick(function()
state:setPage("GROUP_DETAIL", group) state:setPage("GROUP_DETAIL", group)