mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
fix playlist channel-count when removing a connected port.
when removing a connected port, IO::remove_port() emits (IOChange::ConnectionsChanged | IOChange::ConfigurationChanged)
This commit is contained in:
parent
3dc09d42ab
commit
3a3afe7cfc
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ AudioDiskstream::non_realtime_input_change ()
|
|||
need_write_sources = true;
|
||||
}
|
||||
|
||||
if (input_change_pending.type == IOChange::ConfigurationChanged) {
|
||||
if (input_change_pending.type & IOChange::ConfigurationChanged) {
|
||||
RCUWriter<ChannelList> writer (channels);
|
||||
boost::shared_ptr<ChannelList> c = writer.get_copy();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue