NO-OP: add explanatory comment

This commit is contained in:
Paul Davis 2024-11-23 11:37:18 -07:00
parent 53773bb8cb
commit 7af9442098

View file

@ -3014,6 +3014,12 @@ MIDITrigger::set_region_in_worker_thread (std::shared_ptr<Region> r)
_model = mr->model();
_model->ContentsChanged.connect_same_thread (content_connection, std::bind (&MIDITrigger::model_contents_changed, this));
/* Note that in theory we may be able to get loop start/end from the
* SMF file and it could different from the data start/end
*/
loop_start = r->start ().beats();
loop_end = r->end ().beats();