summaryrefslogtreecommitdiff
path: root/scripts/_toggle_monitor_section.lua
blob: e097a94a323f59fe3242b41d3f128635399e5371 (plain)
1
2
3
4
5
6
7
8
9
10
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)
		collectgarbage ()
	end
end end