From a9d2a1c3f884f256112f1ee366d1c3065d83582a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 12 Jan 2022 14:17:33 -0700 Subject: [PATCH] triggerbox: reset default _follow_Length to zero --- 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 f59634219c..6a5446cc32 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -87,7 +87,7 @@ Trigger::Trigger (uint32_t n, TriggerBox& b) , _follow_action_probability (Properties::follow_action_probability, 0) , _follow_count (Properties::follow_count, 1) , _quantization (Properties::quantization, Temporal::BBT_Offset (1, 0, 0)) - , _follow_length (Properties::quantization, Temporal::BBT_Offset (0, 2, 0)) + , _follow_length (Properties::quantization, Temporal::BBT_Offset (0, 0, 0)) , _legato (Properties::legato, false) , _name (Properties::name, "") , _gain (Properties::gain, 1.0)