summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorBen Loftis <ben@glw.com>2011-03-29 15:21:03 +0000
committerBen Loftis <ben@glw.com>2011-03-29 15:21:03 +0000
commit3c1625a71260335e4f1acc48b8676551e55226ff (patch)
tree98307957b2cdaa23fb902570aa689048267feacb /libs
parent54d4fda60d244be23ffa0c848001491818fd86e3 (diff)
new route groups should default ON
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@9229 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/session_state.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 6e6309421c..e3e54f8c2d 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -2272,6 +2272,7 @@ RouteGroup *
Session::add_edit_group (string name)
{
RouteGroup* rg = new RouteGroup (*this, name);
+ rg->set_active(true, this);
edit_groups.push_back (rg);
edit_group_added (rg); /* EMIT SIGNAL */
set_dirty();
@@ -2282,6 +2283,7 @@ RouteGroup *
Session::add_mix_group (string name)
{
RouteGroup* rg = new RouteGroup (*this, name, RouteGroup::Relative);
+ rg->set_active(true, this);
mix_groups.push_back (rg);
mix_group_added (rg); /* EMIT SIGNAL */
set_dirty();