From 83f501f084575ca2ccfd1543a3015cdbdc86e21d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 23 Nov 2024 11:35:02 -0700 Subject: [PATCH] send correct property change for audio trigger when region changes This may need an adjustment in the GUI --- libs/ardour/triggerbox.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index a5a41d3e55..51a3a14d39 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -1720,7 +1720,7 @@ AudioTrigger::set_region_in_worker_thread_internal (std::shared_ptr r, b /* we've changed our internal values; we need to update our queued UIState or they will be lost when UIState is applied */ copy_to_ui_state (); - send_property_change (ARDOUR::Properties::name); + send_property_change (ARDOUR::Properties::region); return 0; }