multi-device input support in UI

This commit is contained in:
kepler155c@gmail.com
2019-01-02 10:34:31 -05:00
parent 1aa5dfdeaf
commit 859977f75c
5 changed files with 100 additions and 51 deletions

View File

@@ -17,7 +17,7 @@ end
local page = UI.Page {
titleBar = UI.TitleBar {
backgroundColor = colors.gray,
title = 'Auto send items to storage',
title = 'Auto deposit items',
previousPage = true,
},
tabs = UI.Tabs {
@@ -33,7 +33,7 @@ local page = UI.Page {
},
},
autostore = UI.Window {
tabTitle = 'Sending',
tabTitle = 'Deposit',
grid = UI.ScrollingGrid {
y = 2, ey = -2,
columns = {
@@ -154,7 +154,7 @@ Event.onInterval(5, function()
end)
return {
menuItem = 'Autostore',
menuItem = 'Auto-deposit',
callback = function()
UI:setPage(page)
end,