From bc8258b234b8d3784c171336131a595ec469fe3b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 24 Apr 2021 19:16:23 +0200 Subject: [PATCH] Remove 6.0-pre0 workaround for missing InlineControl --- libs/ardour/send.cc | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/libs/ardour/send.cc b/libs/ardour/send.cc index e0c92445f3..6250bb3d47 100644 --- a/libs/ardour/send.cc +++ b/libs/ardour/send.cc @@ -288,17 +288,6 @@ Send::set_state (const XMLNode& node, int version) } XMLNode* gain_node; - if ((gain_node = node.child (Controllable::xml_node_name.c_str ())) != 0) { - _gain_control->set_state (*gain_node, version); -#if 1 // remove after Ardour 6.0 / Mixbus 6.1 - /* fix old sessions (6.0-pre0-3039-g93180ceea9 .. 6.0-pre0-3459-g587fc50059) - * this is mainly relevant for Mixbus6.0, copy/paste aux-sends. - * -> remove me after 6.1 - */ - _gain_control->set_flag (Controllable::InlineControl); -#endif - } - if (version <= 6000) { XMLNode const* nn = &node;