Re-fix #3685 having read the request properly.

git-svn-id: svn://localhost/ardour2/branches/3.0@8502 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-01-11 01:30:37 +00:00
parent afc0e2db6c
commit af94fd9971
4 changed files with 5 additions and 10 deletions

View file

@ -1634,7 +1634,11 @@ ProcessorBox::toggle_edit_processor (boost::shared_ptr<Processor> processor)
}
}
if ((internal_send = boost::dynamic_pointer_cast<InternalSend> (processor)) != 0) {
if (boost::dynamic_pointer_cast<Amp> (processor)) {
_parent_strip->revert_to_default_display ();
} else if ((internal_send = boost::dynamic_pointer_cast<InternalSend> (processor)) != 0) {
if (!_session->engine().connected()) {
return;