summaryrefslogtreecommitdiff
path: root/scripts/_cron.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/_cron.lua')
-rw-r--r--scripts/_cron.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/_cron.lua b/scripts/_cron.lua
index 8ec1cd797c..3f412d9ddd 100644
--- a/scripts/_cron.lua
+++ b/scripts/_cron.lua
@@ -23,13 +23,13 @@ function factory ()
-- event at 09:30:00 UTC (here: rec-arm + roll)
if (now >= hhmmss (09, 30, 00) and _last_time < hhmmss (09, 30, 00)) then
Session:maybe_enable_record (false)
- Session:request_transport_speed (1.0, true)
+ Session:request_transport_speed (1.0, true, ARDOUR.TransportRequestSource.TRS_UI)
end
-- event at 09:32:00 UTC (here: rec-stop)
if (now >= hhmmss (09, 32, 00) and _last_time < hhmmss (09, 32, 00)) then
Session:disable_record (false, false)
- Session:request_transport_speed (0.0, true)
+ Session:request_transport_speed (0.0, true, ARDOUR.TransportRequestSource.TRS_UI)
end
_last_time = now