diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index 4b8d70a..2deaa13 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -107,7 +107,7 @@ function Children:with(elementType) if find then return find end - + return self:findChildById(id) end @@ -125,15 +125,15 @@ function Children:with(elementType) if Element.handleEvent(self, evt) then return true end - + local evtLocalCoords = Event.toElementLocalPosition(evt, self) - + if Event.isClickEvent(evt) then -- If click is not inside list bounds, we can safely ignore it if not Event.containsClick(self, evt) then return false end - + for _,child in self:_iterateChildren() do if child:handleEvent(evtLocalCoords) then return true diff --git a/itemcontroller.lua b/itemcontroller.lua index a037dcf..a6541a5 100644 --- a/itemcontroller.lua +++ b/itemcontroller.lua @@ -7,6 +7,7 @@ local Event = require("gfx.event") local Padding = require("gfx.padding") local Container = require("gfx.container") local Children = require("gfx.prop.children") +local Orientation = require("gfx.prop.orientation") local CACHE_FILE = "/.storage.cache" @@ -131,7 +132,7 @@ local function itemList(groups, wBudget, hBudget, savedState, onClick, setPage, padImport, padNext }, - vertical = false + [Orientation:getId()] = false } local bgColors = { @@ -178,7 +179,7 @@ local function itemList(groups, wBudget, hBudget, savedState, onClick, setPage, paddedText, countLabel }, - vertical = false, + [Orientation:getId()] = false, onClick = onClick and function(element, x, y, source) return onClick(element, x, y, source, group) end or nil @@ -195,7 +196,7 @@ local function itemList(groups, wBudget, hBudget, savedState, onClick, setPage, return List:new{ [Children:getId()] = entries, - vertical = true + [Orientation:getId()] = true }, state end