mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
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:
parent
e528e5038f
commit
b9dca83832
14 changed files with 110 additions and 51 deletions
|
|
@ -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 ();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue