summaryrefslogtreecommitdiff
path: root/libs/evoral/src/ControlList.cpp
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2014-08-06 14:43:40 -0500
committerBen Loftis <ben@harrisonconsoles.com>2014-08-06 14:43:40 -0500
commit1873bcfa9d7a37b4b751fabe962932d4d151bf12 (patch)
tree105e2f115eaed1176276aa5c4614e985446a6cf4 /libs/evoral/src/ControlList.cpp
parent16ca4e0f9a4ffc87e8e572b8d69767648c2170ae (diff)
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
Diffstat (limited to 'libs/evoral/src/ControlList.cpp')
-rw-r--r--libs/evoral/src/ControlList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/src/ControlList.cpp b/libs/evoral/src/ControlList.cpp
index be08cb446b..3f70cde274 100644
--- a/libs/evoral/src/ControlList.cpp
+++ b/libs/evoral/src/ControlList.cpp
@@ -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 ();