From 4ecb19d9eec69855245a432a58afcd833287ecd2 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 1 Jul 2022 10:11:05 -0500 Subject: [PATCH] send_to_bus script: fix typo in prior commit --- share/scripts/send_to_bus.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/scripts/send_to_bus.lua b/share/scripts/send_to_bus.lua index c03c9f9ead..6bb8f2ad53 100644 --- a/share/scripts/send_to_bus.lua +++ b/share/scripts/send_to_bus.lua @@ -12,7 +12,7 @@ function factory () return function () chn = mst:n_inputs ():n_audio () end mst = nil -- explicitly drop reference - if chn = 0 then chn = 2; end + if chn == 0 then chn = 2; end local sel = Editor:get_selection () -- get selection local tracks = ARDOUR.RouteListPtr () -- create a new list