From 53773bb8cbd10c296c4d6ba2b73701ffdc171a4b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 23 Nov 2024 11:35:56 -0700 Subject: [PATCH] send correct property change for MIDI trigger when region changes This may need an adjustment in the GUI --- libs/ardour/triggerbox.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index 51a3a14d39..c9f4da3b8f 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -3038,10 +3038,7 @@ MIDITrigger::set_region_in_worker_thread (std::shared_ptr r) DEBUG_TRACE (DEBUG::Triggers, string_compose ("%1 loaded midi region, span is %2\n", name(), data_length)); - /* This is being used as a kind of shorthand for "everything" which is - pretty stupid - */ - send_property_change (ARDOUR::Properties::name); + send_property_change (ARDOUR::Properties::region); return 0; }