mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-31 19:07:43 +01:00
patch from colinf to make dbl-click on send "box" map its controls to the strip; remove related stub functions from ProcessorBox; fix crash when removing send due to the process lock not being held
git-svn-id: svn://localhost/ardour2/branches/3.0@11274 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
5de9a8f38b
commit
cc5e8d41da
3 changed files with 6 additions and 13 deletions
|
|
@ -656,16 +656,6 @@ ProcessorBox::build_possible_aux_menu ()
|
|||
return menu;
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::show_send_controls ()
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::new_send ()
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
ProcessorBox::show_processor_menu (int arg)
|
||||
{
|
||||
|
|
@ -1830,6 +1820,11 @@ ProcessorBox::toggle_edit_processor (boost::shared_ptr<Processor> processor)
|
|||
if (boost::dynamic_pointer_cast<InternalSend> (processor) == 0) {
|
||||
SendUIWindow* w = new SendUIWindow (send, _session);
|
||||
w->show ();
|
||||
} else {
|
||||
/* assign internal send to main fader */
|
||||
if (_parent_strip) {
|
||||
_parent_strip->show_send(send);
|
||||
}
|
||||
}
|
||||
|
||||
} else if ((retrn = boost::dynamic_pointer_cast<Return> (processor)) != 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue