summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-08-02 00:33:50 +0000
committerCarl Hetherington <carl@carlh.net>2009-08-02 00:33:50 +0000
commit86a70f19fb6a3d15911dd598853f8efd9e9bf5f1 (patch)
tree0bc106829f055d5af7228432aa74a60ed68ae164 /libs
parent168b1471dc8bd2885cf39cc66d6548eb25e0919b (diff)
Set up IO bundles properly so that mixer strip IO button text is set correctly.
git-svn-id: svn://localhost/ardour2/branches/3.0@5454 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/io.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index 0d7446e852..7a97ce0d6b 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -1139,7 +1139,7 @@ IO::setup_bundles ()
char buf[32];
if (!_bundle) {
- _bundle.reset (new Bundle (true));
+ _bundle.reset (new Bundle (_direction == Input));
}
_bundle->suspend_signals ();
@@ -1168,7 +1168,7 @@ BundleList
IO::bundles_connected ()
{
BundleList bundles;
-
+
/* User bundles */
for (std::vector<UserBundleInfo>::iterator i = _bundles_connected.begin(); i != _bundles_connected.end(); ++i) {
bundles.push_back (i->bundle);