From db5cb4ec94f9f581368da18437792fb5b6704be6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 4 Sep 2022 20:14:09 +0200 Subject: [PATCH] Expose Send polarity_control directly --- libs/ardour/ardour/delivery.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/ardour/ardour/delivery.h b/libs/ardour/ardour/delivery.h index 72c443d4c5..c7e147832c 100644 --- a/libs/ardour/ardour/delivery.h +++ b/libs/ardour/ardour/delivery.h @@ -113,6 +113,10 @@ public: uint32_t pans_required() const { return _configured_input.n_audio(); } virtual uint32_t pan_outs() const; + boost::shared_ptr polarity_control () const { + return _polarity_control; + } + protected: XMLNode& state () const;