Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0038-on_editor_scrollbar
on_editor_scrollbar = function(state, x,y)
	if x < state.right+15 then return end
	if x > state.right+45 then return end
	if y < state.scrollbar_top then return end
	if y > state.scrollbar_bottom then return end
	return true
end