minor bugfixes - cleanup

This commit is contained in:
kepler155c@gmail.com
2020-04-22 23:37:12 -06:00
parent 7224d441ca
commit b0d2ce0199
5 changed files with 20 additions and 27 deletions

View File

@@ -138,19 +138,6 @@ function page:eventHandler(event)
self:executeStatement('_ENV')
command = nil
elseif event.type == 'hide_output' then
self.output:disable()
self.titleBar.oy = -1
self.titleBar.event = 'show_output'
self.titleBar.closeInd = '^'
self.titleBar:resize()
self.grid.ey = -2
self.grid:resize()
self:draw()
elseif event.type == 'tab_select' then
self:setFocus(self.prompt)
@@ -201,7 +188,7 @@ function page:eventHandler(event)
command = nil
self.grid:setValues(t)
self.grid:setIndex(1)
self:draw()
self.grid:draw()
end
return true
@@ -247,7 +234,7 @@ function page:setResult(result)
end
self.grid:setValues(t)
self.grid:setIndex(1)
self:draw()
self.grid:draw()
end
function page.grid:eventHandler(event)