Fix orientation bug
This commit is contained in:
parent
2b24904c6f
commit
25a998a542
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user