Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0109-overflow_button
overflow_button = function(x, y)
	styled_button('>>', x,y,
		function()
			if Show_menu == 'overflow' then
				Show_menu = nil
			else
				Show_menu = 'overflow'
			end
		end)
	return x, y+Line_height
end