From ee4b68fc8021e51fbb5830edede8472a5fc77cc1 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 13 Jul 2025 21:26:26 -0600 Subject: [PATCH] when clip recording, we are always monitoring input regardless of timeline rec modes --- libs/ardour/route.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 58fe4cec41..f3c57fda89 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -6225,7 +6225,7 @@ Route::monitoring_state () const if (clip_rec) { /* actively recording into a slot */ - return get_input_monitoring_state (true, auto_input_does_talkback) & auto_monitor_mask; + return MonitoringInput; } if (!roll) {