Update item list display

This commit is contained in:
Gabriel Tofvesson 2024-10-26 00:40:02 +02:00
parent 3e69183f78
commit 421c9b04b9

View File

@ -373,7 +373,7 @@ local PAGES = {
} }
for i=1,groupEntryListBudget do for i=1,groupEntryListBudget do
local bgColor = (i % 2 == 0) and colors.gray or colors.black local bgColor = (i % 2 == 0) and colors.lightGray or colors.black
table.insert( table.insert(
entries, entries,
List:new{ List:new{
@ -388,7 +388,8 @@ local PAGES = {
}, },
Text:new{ Text:new{
id = GroupEntryID.COUNT, id = GroupEntryID.COUNT,
bgColor = bgColor bgColor = bgColor,
fgColor = colors.black
} }
} }
} }