milo bugfixes + enderchest app

This commit is contained in:
kepler155c@gmail.com
2019-01-02 23:57:06 -05:00
parent 859977f75c
commit 00e698eb18
6 changed files with 92 additions and 12 deletions

View File

@@ -67,13 +67,19 @@ end
UI:getPage('nodeWizard').wizard:add({ jobs = wizardPage })
--[[ Display ]]
-- TODO: some way to cancel a job
local function createPage(node)
local monitor = UI.Device {
device = node.adapter,
textScale = node.textScale or .5,
}
function monitor:resize()
self.textScale = node.textScale or .5
UI.Device.resize(self)
end
local page = UI.Page {
parent = UI.Device {
device = node.adapter,
textScale = node.textScale or .5,
},
parent = monitor,
grid = UI.Grid {
ey = -6,
sortColumn = 'index',