logic layer
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-03-03 20:14:57 +01:00
parent c39e0ece35
commit a732b5cbfa
7 changed files with 14 additions and 67 deletions

View File

@@ -8,14 +8,16 @@ ConfigurationWindow = {
--- @within ConfigurationWindow
function ConfigurationWindow.init()
ConfigurationWindow.controls = {
UI.create_action_item(
"Save",
function() Config.save() end
),
UI.create_action_item(
"Restore Defaults",
function() Config.reset() end
),
{
label = "Save",
action = function() Config.save() end,
type = "action_item"
},
{
label = "Restore Defaults",
action = function() Config.reset() end,
type = "action_item"
},
}
end