13
0

triggerbox: the default quantization for a clip should be 'bars'

This commit is contained in:
Ben Loftis 2022-01-07 08:46:51 -06:00
parent 6750c9b049
commit 4e5f171fe2

View File

@ -83,7 +83,7 @@ Trigger::Trigger (uint32_t n, TriggerBox& b)
, _follow_action1 (Properties::follow_action1, Stop) , _follow_action1 (Properties::follow_action1, Stop)
, _follow_action_probability (Properties::follow_action_probability, 0) , _follow_action_probability (Properties::follow_action_probability, 0)
, _follow_count (Properties::follow_count, 1) , _follow_count (Properties::follow_count, 1)
, _quantization (Properties::quantization, Temporal::BBT_Offset (0, 1, 0)) , _quantization (Properties::quantization, Temporal::BBT_Offset (1, 0, 0))
, _legato (Properties::legato, false) , _legato (Properties::legato, false)
, _name (Properties::name, "") , _name (Properties::name, "")
, _gain (Properties::gain, 1.0) , _gain (Properties::gain, 1.0)
@ -982,7 +982,7 @@ AudioTrigger::set_region_in_worker_thread (boost::shared_ptr<Region> r)
_quantization = Temporal::BBT_Offset (-1, 0, 0); _quantization = Temporal::BBT_Offset (-1, 0, 0);
} else { } else {
_stretchable = true; _stretchable = true;
_quantization = Temporal::BBT_Offset (0, 1, 0); _quantization = Temporal::BBT_Offset (1, 0, 0);
_follow_action0 = Again; _follow_action0 = Again;
} }
} }