From e584ae0bf94673bf719e661c49e8a2f2d2dd0346 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 18 Dec 2014 02:25:17 -0500 Subject: Mute automation via normal mute button. --- libs/ardour/ardour/route.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'libs/ardour/ardour/route.h') diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h index 6dbdda496c..5d52fc0c52 100644 --- a/libs/ardour/ardour/route.h +++ b/libs/ardour/ardour/route.h @@ -394,15 +394,18 @@ class LIBARDOUR_API Route : public SessionObject, public Automatable, public Rou void set_value (double); double get_value () const; + /* Pretend to change value, but do not affect actual route mute. */ + void set_superficial_value(bool muted); + private: boost::weak_ptr _route; }; - boost::shared_ptr solo_control() const { + boost::shared_ptr solo_control() const { return _solo_control; } - boost::shared_ptr mute_control() const { + boost::shared_ptr mute_control() const { return _mute_control; } -- cgit v1.2.3