Fix tab action button id generation

This commit is contained in:
Gabriel Tofvesson 2024-10-25 18:21:54 +02:00
parent 726667399f
commit 9c4605cda2

View File

@ -288,10 +288,10 @@ local PAGES = {
local function tabActionList(interval, count, sign, spacing)
local buttons = {}
if count > 0 then
table.insert(buttons, tabActionButton(tabActionButtonID(tabActionButtonValue(1, interval, count, sign))))
table.insert(buttons, tabActionButton(tabActionButtonValue(1, interval, count, sign)))
for i=2,count do
table.insert(buttons, Element:new{ width = spacing })
table.insert(buttons, tabActionButton(tabActionButtonID(tabActionButtonValue(i, interval, count, sign))))
table.insert(buttons, tabActionButton(tabActionButtonValue(i, interval, count, sign)))
end
end