From 12d6a93fb794ff96e752690ce8dbc94968b0073d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 9 Jul 2025 10:53:00 -0600 Subject: [PATCH] fix incorrect sensitivity of automation acts at session load Session skipped EditingContext::set_sensitive() by calling too far back up its inheritance tree. --- gtk2_ardour/editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index aad906df17..f4789a237a 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -1198,7 +1198,7 @@ Editor::update_title () void Editor::set_session (Session *t) { - SessionHandlePtr::set_session (t); + EditingContext::set_session (t); section_marker_bar->clear (true);