mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Auto write-activate automation in latch mode
This allows to use of control-surfaces without touch-sensitivity or mouse-wheel to write automation on demand (until transport stop).
This commit is contained in:
parent
ce8846d13f
commit
edfca68494
1 changed files with 4 additions and 0 deletions
|
|
@ -128,6 +128,10 @@ AutomationControl::set_value (double val, PBD::Controllable::GroupControlDisposi
|
|||
return;
|
||||
}
|
||||
|
||||
if (_list && !touching () && alist()->automation_state() == Latch && _session.transport_rolling ()) {
|
||||
start_touch (_session.transport_sample ());
|
||||
}
|
||||
|
||||
/* enforce strict double/boolean value mapping */
|
||||
|
||||
if (_desc.toggled) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue