From 5677d30d3ea27a1b99ff5effcc78c095b42c865e Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 1 Jan 2026 22:17:21 +0100 Subject: [PATCH] Fix loading 2.x sessions (forced set_active toggle) --- 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 2e56d89ae5..949dde9861 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -5121,7 +5121,7 @@ Route::set_active (bool yn, void* src) return; } - if (is_singleton ()) { + if (is_singleton () && !yn) { return; }