diff options
| author | ne_mene <[email protected]> | 2026-03-31 14:46:36 +0200 |
|---|---|---|
| committer | ne_mene <[email protected]> | 2026-03-31 14:46:36 +0200 |
| commit | 74b6389c9ec8e37749afb641dfbebbf4c802e3eb (patch) | |
| tree | 39e39de78d99ac9f946fb163da52f77f1b0e0b05 /src/scenes | |
| parent | 644050d9fc341e3963b27e30016c367bb4aeb609 (diff) | |
speck editor: dummy file buttons
Diffstat (limited to 'src/scenes')
| -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 |
