From 8ee660356181f4eb66e4abcb30d52f55ae267b80 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 19 Apr 2016 13:02:40 -0400 Subject: design changes to various SlavableAutomationControls to make it possible to get the logic right for boolean controls --- libs/ardour/automation_control.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libs/ardour/automation_control.cc') diff --git a/libs/ardour/automation_control.cc b/libs/ardour/automation_control.cc index 97765a7070..8ffbd2d7df 100644 --- a/libs/ardour/automation_control.cc +++ b/libs/ardour/automation_control.cc @@ -115,12 +115,14 @@ void AutomationControl::actually_set_value (double value, PBD::Controllable::GroupControlDisposition gcd) { bool to_list = _list && boost::dynamic_pointer_cast(_list)->automation_write(); + const double old_value = Control::user_double (); Control::set_double (value, _session.transport_frame(), to_list); AutomationType at = (AutomationType) _parameter.type(); - std::cerr << "++++ Changed (" << enum_2_string (at) << ", " << enum_2_string (gcd) << ") = " << value << " @ " << this << std::endl; + std::cerr << "++++ Changed (" << enum_2_string (at) << ", " << enum_2_string (gcd) << ") = " << value + << " (was " << old_value << ") @ " << this << std::endl; Changed (true, gcd); } -- cgit v1.2.3