fix bug in path_expand() when passed an empty string
[ardour.git] / libs / ardour / automation_control.cc
index 1460c42c7bd75420089b5f37c21657a5cf810e97..2989d82818ecc23bb8dde1eda6dc1bdc0a7e11ff 100644 (file)
@@ -40,22 +40,28 @@ AutomationControl::AutomationControl(
 {
 }
 
-
-float
+double
 AutomationControl::get_value() const
 {
        bool from_list = _list && ((AutomationList*)_list.get())->automation_playback();
-       return Control::get_float(from_list, _session.transport_frame());
+       return Control::get_double (from_list, _session.transport_frame());
 }
 
-
 void
-AutomationControl::set_value(float value)
+AutomationControl::set_value(double value)
 {
        bool to_list = _list && _session.transport_stopped()
                && ((AutomationList*)_list.get())->automation_write();
+        if (to_list && parameter().toggled()) {
+
+                //store the previous value just before this so any 
+                // interpolation works right
+                
+                _list->add (get_double(), _session.transport_frame()-1);
+        }
 
-       Control::set_float(value, to_list, _session.transport_frame());
+       Control::set_double (value, to_list, _session.transport_frame());
 
        Changed(); /* EMIT SIGNAL */
 }