Remove unused method.
[ardour.git] / libs / ardour / automation_control.cc
index a4e0a7bbc088e700b08a5365f535eeb3d6606095..a1611337fd78f07262a7f272080c8b10289845de 100644 (file)
@@ -34,7 +34,7 @@ AutomationControl::AutomationControl(
                const Evoral::Parameter& parameter,
                boost::shared_ptr<ARDOUR::AutomationList> list,
                const string& name)
-       : Controllable((name != "") ? name : EventTypeMap::instance().to_symbol(parameter))
+       : Controllable (name.empty() ? EventTypeMap::instance().to_symbol(parameter) : name)
        , Evoral::Control(parameter, list)
        , _session(session)
 {
@@ -52,8 +52,16 @@ AutomationControl::set_value(double value)
 {
        bool to_list = _list && _session.transport_stopped()
                && ((AutomationList*)_list.get())->automation_write();
+        if (to_list && parameter().toggled()) {
 
-       Control::set_double(value, to_list, _session.transport_frame());
+                // store the previous value just before this so any 
+                // interpolation works right
+                
+                _list->add (get_double(), _session.transport_frame()-1);
+        }
+
+       Control::set_double (value, to_list, _session.transport_frame());
 
        Changed(); /* EMIT SIGNAL */
 }