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:
Ben Loftis 2014-08-06 14:43:40 -05:00
parent 16ca4e0f9a
commit 1873bcfa9d
3 changed files with 2 additions and 4 deletions

View file

@ -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 ();