13
0

make dbl-click on send toggle back *and* forth between send/regular strip display

git-svn-id: svn://localhost/ardour2/branches/3.0@11284 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-01-20 15:53:21 +00:00
parent 2b3a9c12c7
commit 744c8f572f

View File

@ -1823,8 +1823,12 @@ ProcessorBox::toggle_edit_processor (boost::shared_ptr<Processor> processor)
} else {
/* assign internal send to main fader */
if (_parent_strip) {
_parent_strip->show_send(send);
}
if (_parent_strip->current_delivery() == send) {
_parent_strip->revert_to_default_display ();
} else {
_parent_strip->show_send(send);
}
}
}
} else if ((retrn = boost::dynamic_pointer_cast<Return> (processor)) != 0) {