From 74b6389c9ec8e37749afb641dfbebbf4c802e3eb Mon Sep 17 00:00:00 2001 From: ne_mene Date: Tue, 31 Mar 2026 14:46:36 +0200 Subject: speck editor: dummy file buttons --- src/scenes/speck_editor.lua | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/scenes/speck_editor.lua') 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 -- cgit v1.3-2-g0d8e