mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
More fixes for range-based automation editing.
-Remove redundant start_grab calls. -Show gain curves in Range mode, so you can see the curves you are selecting
This commit is contained in:
parent
16ca4e0f9a
commit
1873bcfa9d
3 changed files with 2 additions and 4 deletions
|
|
@ -467,7 +467,7 @@ ControlList::editor_add (double when, double value)
|
|||
|
||||
ControlEvent cp (when, 0.0f);
|
||||
iterator i = lower_bound (_events.begin(), _events.end(), &cp, time_comparator);
|
||||
DEBUG_TRACE (DEBUG::ControlList, string_compose ("editor_add: actually add when= %1 value= %1\n", when, value));
|
||||
DEBUG_TRACE (DEBUG::ControlList, string_compose ("editor_add: actually add when= %1 value= %2\n", when, value));
|
||||
_events.insert (i, new ControlEvent (when, value));
|
||||
|
||||
mark_dirty ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue