1
0
mirror of https://github.com/kepler155c/opus synced 2025-10-21 10:47:40 +00:00

resizing + injector fixes

This commit is contained in:
kepler155c@gmail.com
2019-02-08 19:21:20 -05:00
parent 72b3c7bac9
commit 8c1abb21ca
10 changed files with 59 additions and 33 deletions

View File

@@ -1,4 +1,8 @@
_G.requireInjector(_ENV)
if not _G.requireInjector then
local BASE ='https://raw.githubusercontent.com/kepler155c/opus/develop-1.8/sys/apis'
_ENV.LUA_PATH=BASE .. '/?.lua'
load(_G.http.get(BASE .. '/injector.lua').readAll())()(_ENV)
end
local History = require('history')
local UI = require('ui')

View File

@@ -100,10 +100,11 @@ local page = UI.Page {
newApp = UI.Button {
text = '+', event = 'new',
},
--[[
volume = UI.Button {
x = 3,
text = '\15', event = 'volume',
}
},]]
},
editor = UI.SlideOut {
y = -12, height = 12,

View File

@@ -57,6 +57,7 @@ local page = UI.Page {
},
output = UI.Embedded {
y = 5, ey = -2, x = 2, ex = -2,
visible = true,
},
},
statusBar = UI.StatusBar { },