From 86a70f19fb6a3d15911dd598853f8efd9e9bf5f1 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 2 Aug 2009 00:33:50 +0000 Subject: [PATCH] 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 --- libs/ardour/io.cc | 4 ++-- 1 file 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::iterator i = _bundles_connected.begin(); i != _bundles_connected.end(); ++i) { bundles.push_back (i->bundle);