Auto-connect outputs that appear as a result of e.g. instruments being added to MIDI tracks. Fixes #3368.

git-svn-id: svn://localhost/ardour2/branches/3.0@7720 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-08-30 22:34:21 +00:00
parent e528e5038f
commit b9dca83832
14 changed files with 110 additions and 51 deletions

View file

@ -92,7 +92,7 @@ void
SendUI::ins_changed (IOChange change, void* ignored)
{
ENSURE_GUI_THREAD (*this, &SendUI::ins_changed, change, ignored)
if (change & ConfigurationChanged) {
if (change.type & IOChange::ConfigurationChanged) {
_panners.setup_pan ();
}
}
@ -101,7 +101,7 @@ void
SendUI::outs_changed (IOChange change, void* ignored)
{
ENSURE_GUI_THREAD (*this, &SendUI::outs_changed, change, ignored)
if (change & ConfigurationChanged) {
if (change.type & IOChange::ConfigurationChanged) {
_panners.setup_pan ();
_gpm.setup_meters ();
}