mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
Remove Mixbus Aux-Link special case 2/2
This commit is contained in:
parent
d050256a41
commit
42cc09af13
2 changed files with 14 additions and 22 deletions
|
|
@ -798,7 +798,6 @@ ProcessorEntry::build_send_options_menu ()
|
|||
Menu* menu = manage (new Menu);
|
||||
MenuList& items = menu->items ();
|
||||
|
||||
if (!ARDOUR::Profile->get_mixbus()) {
|
||||
boost::shared_ptr<Send> send = boost::dynamic_pointer_cast<Send> (_processor);
|
||||
if (send) {
|
||||
items.push_back (CheckMenuElem (_("Link panner controls")));
|
||||
|
|
@ -806,7 +805,6 @@ ProcessorEntry::build_send_options_menu ()
|
|||
c->set_active (send->panner_shell()->is_linked_to_route());
|
||||
c->signal_toggled().connect (sigc::mem_fun (*this, &ProcessorEntry::toggle_panner_link));
|
||||
}
|
||||
}
|
||||
|
||||
boost::shared_ptr<InternalSend> aux = boost::dynamic_pointer_cast<InternalSend> (_processor);
|
||||
if (aux) {
|
||||
|
|
@ -4095,10 +4093,6 @@ ProcessorBox::edit_aux_send (boost::shared_ptr<Processor> processor)
|
|||
if (boost::dynamic_pointer_cast<InternalSend> (processor) == 0) {
|
||||
return false;
|
||||
}
|
||||
if (ARDOUR::Profile->get_mixbus()) {
|
||||
/* don't allow editing sends, ignore switch to send-edit */
|
||||
return true;
|
||||
}
|
||||
|
||||
if (_parent_strip) {
|
||||
boost::shared_ptr<Send> send = boost::dynamic_pointer_cast<Send> (processor);
|
||||
|
|
|
|||
|
|
@ -2699,7 +2699,6 @@ RCOptionEditor::RCOptionEditor ()
|
|||
));
|
||||
|
||||
|
||||
if (!ARDOUR::Profile->get_mixbus()) {
|
||||
add_option (_("Mixer"), new OptionEditorHeading (_("Send Routing")));
|
||||
add_option (_("Mixer"),
|
||||
new BoolOption (
|
||||
|
|
@ -2708,7 +2707,6 @@ RCOptionEditor::RCOptionEditor ()
|
|||
sigc::mem_fun (*_rc_config, &RCConfiguration::get_link_send_and_route_panner),
|
||||
sigc::mem_fun (*_rc_config, &RCConfiguration::set_link_send_and_route_panner)
|
||||
));
|
||||
}
|
||||
|
||||
/* Signal Flow */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue