sokoban.love/0076-delete_pane_button

18 lines
486 B
Plaintext
Raw Normal View History

delete_pane_button = function(x, y, r)
2023-11-26 05:11:24 +00:00
return overflowable_button('delete', x, y, r,
function()
if Current_pane.example_name then
Deleted_example_panes[Current_pane.example_name] = true
end
2023-11-21 06:23:09 +00:00
table.remove(Panes, Current_pane_index)
if #Panes == 0 then
table.insert(Panes, new_pane())
end
if Current_pane_index > #Panes then
Current_pane_index = Current_pane_index-1
end
Current_pane = Panes[Current_pane_index]
end,
--[[final button]] true)
end