diff --git a/itemcontroller.lua b/itemcontroller.lua index 3011354..4858968 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -339,24 +339,28 @@ local PAGES = { left = 1, right = 1, bottom = 0, + bgColor = colors.red, element = List:new{ + bgColor = colors.red, [Orientation:getId()] = Orientation.VERTICAL, [Children:getId()] = { - Text:new{ text = "Count" }, - Text:new{ text = tostring(group:getItemCount()) } + Text:new{ text = "Count", bgColor = colors.red }, + Text:new{ text = tostring(group:getItemCount()), bgColor = colors.red } } } }, Padding:new{ + bgColor = colors.blue, top = 0, left = 1, right = 1, bottom = 0, element = List:new{ + bgColor = colors.blue, [Orientation:getId()] = Orientation.VERTICAL, [Children:getId()] = { - Text:new{ text = "Slot" }, - Text:new{ text = tostring(group:getStackCount()) } + Text:new{ text = "Slot", bgColor = colors.blue }, + Text:new{ text = tostring(group:getStackCount()), bgColor = colors.blue } } } }