summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/ControlList.hpp
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2015-06-07 23:07:56 +1000
committernick_m <mainsbridge@gmail.com>2015-06-17 09:54:22 +1000
commit57ce447fd19bd794afe90748d466bbe172c2eab0 (patch)
treef02005535c929d2aa35a5f3030d1b1591df8a75d /libs/evoral/evoral/ControlList.hpp
parent9d4c93aca7a7d6900c2b4f6c138057a8006321b3 (diff)
Fix some workflow problems wrt automation.
- clearing automation points sets control to "off" rather than touch. - multiple touches on the same pass acts consistently (no more fader jumps on mouse button press - use actual value for initial point rather than some arbitrary default. clarify new semantics of add () (with_default->with_initial). - clean some whitespace - add guard points as needed in stop. - catch grab broken signal (i can't trigger it, but the docs seem to think it is essential).
Diffstat (limited to 'libs/evoral/evoral/ControlList.hpp')
-rw-r--r--libs/evoral/evoral/ControlList.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/evoral/ControlList.hpp b/libs/evoral/evoral/ControlList.hpp
index 7a828264bd..d2be604e5e 100644
--- a/libs/evoral/evoral/ControlList.hpp
+++ b/libs/evoral/evoral/ControlList.hpp
@@ -124,7 +124,7 @@ public:
void slide (iterator before, double distance);
void shift (double before, double distance);
- virtual void add (double when, double value, bool with_guards=true, bool with_default=true);
+ virtual void add (double when, double value, bool with_guards=true, bool with_initial=true);
virtual void editor_add (double when, double value);
void fast_simple_add (double when, double value);