Fix group list padding issue
This commit is contained in:
parent
04be409a29
commit
343aa69a46
@ -416,7 +416,7 @@ local PAGES = {
|
||||
|
||||
local ACTION_COUNT = 2
|
||||
local ACTION_INTERVAL = 5
|
||||
local ACTION_SPACING = 0
|
||||
local ACTION_SPACING = 1
|
||||
|
||||
local actions = {
|
||||
tabActionList(ACTION_INTERVAL, ACTION_COUNT, -1, ACTION_SPACING),
|
||||
@ -443,10 +443,15 @@ local PAGES = {
|
||||
}
|
||||
|
||||
local function calculateActionSpaces()
|
||||
if #actions == 1 then
|
||||
return -- NOP for single padding element
|
||||
end
|
||||
|
||||
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)
|
||||
@ -617,7 +622,7 @@ local PAGES = {
|
||||
local name = fitText(group:getSimpleName(), nameTextBudget)
|
||||
|
||||
nameText:setText(name)
|
||||
namePadding:setPadding{ right = nameTextBudget - #name }
|
||||
namePadding:setPadding{ right = nameTextBudget - #name + 1 }
|
||||
listEntry:_reload()
|
||||
listEntry:setOnClick(function()
|
||||
state:setPage("GROUP_DETAIL", group)
|
||||
|
Loading…
x
Reference in New Issue
Block a user