diff options
Diffstat (limited to 'src/scenes/speck_editor.lua')
| -rw-r--r-- | src/scenes/speck_editor.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/scenes/speck_editor.lua b/src/scenes/speck_editor.lua index ce59a79..6dbc605 100644 --- a/src/scenes/speck_editor.lua +++ b/src/scenes/speck_editor.lua @@ -67,8 +67,8 @@ local PROPERTY_TYPES = { function speck_editor_ui_sys(editor) local system = editor.speck_sys - im.begin_window("Speck Editor", 5, 5, 180, 180, {}) - im.text("Properties") + im.begin_window("Speck Editor", 5, 5, 256, 1024, {}) + im.text("Properties:") for i, prop in ipairs(SPECK_EXPORTED_ARGS) do local func = PROPERTY_TYPES[type(system[prop])] if func then @@ -76,5 +76,11 @@ function speck_editor_ui_sys(editor) end end + im.text("File:") + im.button("New") + im.button("Open") + im.button("Save as") + im.button("Save") + im.end_window() end |
