summaryrefslogtreecommitdiff
path: root/libs/ardour/bundle.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-07-05 18:48:51 +0200
committerRobin Gareus <robin@gareus.org>2013-07-10 15:27:10 +0200
commit9d0a3b9eafc316e6536c8117fddbef62c77bd42c (patch)
tree8c915c129bf719dca515c7eaf39f586d23e95154 /libs/ardour/bundle.cc
parentf1f84140e73f0274adfcf7fd6d2046bdfe643ef8 (diff)
fix [some] issues when adding/removing output ports
Diffstat (limited to 'libs/ardour/bundle.cc')
-rw-r--r--libs/ardour/bundle.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/bundle.cc b/libs/ardour/bundle.cc
index f38fe0c42f..cf393644fc 100644
--- a/libs/ardour/bundle.cc
+++ b/libs/ardour/bundle.cc
@@ -205,6 +205,8 @@ Bundle::remove_channel (uint32_t ch)
Glib::Threads::Mutex::Lock lm (_channel_mutex);
_channel.erase (_channel.begin () + ch);
+
+ emit_changed (ConfigurationChanged);
}
/** Remove all channels */
@@ -214,6 +216,8 @@ Bundle::remove_channels ()
Glib::Threads::Mutex::Lock lm (_channel_mutex);
_channel.clear ();
+
+ emit_changed (ConfigurationChanged);
}
/** @param p Port name.