Augment default click handler with ItemGroup arg
This commit is contained in:
parent
2f895e22b0
commit
c6adf1cd09
@ -111,7 +111,9 @@ local function itemList(groups, wBudget, onClick)
|
||||
countLabel
|
||||
},
|
||||
vertical = false,
|
||||
onClick = onClick
|
||||
onClick = onClick and function(element, x, y, source)
|
||||
onClick(element, x, y, source, group)
|
||||
end or nil
|
||||
}
|
||||
table.insert(entries, list)
|
||||
end
|
||||
@ -165,8 +167,9 @@ local PAGES = {
|
||||
table.insert(subset, found[i])
|
||||
end
|
||||
|
||||
local listResult = itemList(subset, state.width, function(element, x, y, source)
|
||||
print("Clicked: "..x.." "..y)
|
||||
local listResult = itemList(subset, state.width, function(element, x, y, source, group)
|
||||
print("Clicked: "..group:getDisplayName())
|
||||
return true
|
||||
end)
|
||||
listResult:setParent(state.monitor)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user