mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
triggerbox: fix default follow action probability, and the default FA to Again
This commit is contained in:
parent
8bda2ea54d
commit
c14e9cd2fb
1 changed files with 3 additions and 4 deletions
|
|
@ -79,7 +79,7 @@ Trigger::Trigger (uint32_t n, TriggerBox& b)
|
|||
, _explicitly_stopped (false)
|
||||
, _launch_style (Properties::launch_style, Toggle)
|
||||
, _use_follow (Properties::use_follow, true)
|
||||
, _follow_action0 (Properties::follow_action0, NextTrigger)
|
||||
, _follow_action0 (Properties::follow_action0, Again)
|
||||
, _follow_action1 (Properties::follow_action1, Stop)
|
||||
, _follow_action_probability (Properties::follow_action_probability, 100)
|
||||
, _follow_count (Properties::follow_count, 1)
|
||||
|
|
@ -826,7 +826,6 @@ AudioTrigger::set_region_in_worker_thread (boost::shared_ptr<Region> r)
|
|||
_stretchable = false;
|
||||
_quantization = Temporal::BBT_Offset (-1, 0, 0);
|
||||
_follow_action0 = None;
|
||||
_follow_action_probability = 0; /* 100% left */
|
||||
} else {
|
||||
|
||||
if (probably_oneshot()) {
|
||||
|
|
@ -839,10 +838,10 @@ AudioTrigger::set_region_in_worker_thread (boost::shared_ptr<Region> r)
|
|||
_quantization = Temporal::BBT_Offset (0, 1, 0);
|
||||
_follow_action0 = Again;
|
||||
}
|
||||
|
||||
_follow_action_probability = 0; /* 100% left */
|
||||
}
|
||||
|
||||
_follow_action_probability = 0; /* 100% left */
|
||||
|
||||
PropertyChanged (ARDOUR::Properties::name);
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue