summaryrefslogtreecommitdiff
path: root/share/scripts/_toggle_monitor_section.lua
blob: 0853ef2fb495814089b5d4410403bca015eb79bc (plain)
1
2
3
4
5
6
7
8
9
ardour { ["type"] = "Snippet", name = "Toggle Monitor Section" }

function factory () return function () 
	if Session:monitor_out():isnil() then
		ARDOUR.config():set_use_monitor_bus (true)
	else
		ARDOUR.config():set_use_monitor_bus (false)
	end
end end