summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd Naugle <tnaugle@blackdog>2015-09-21 14:49:31 -0500
committerTodd Naugle <tnaugle@blackdog>2015-09-21 14:49:31 -0500
commit233c144c2cb0b345f49d9b0f37c3298de86d265a (patch)
tree67d9055c5f449e039c1fb09c3ed8da8f47cf21db
parentcba31db6fe024fc535032c72c04adebcd7023828 (diff)
Update RouteGroup property defaults.
This is part of a larger fix for #6450. Previously new route groups were created with different default properties depending on which code created the new group. The group tab method had all properties set and that is now going to be the default.
-rw-r--r--libs/ardour/route_group.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/libs/ardour/route_group.cc b/libs/ardour/route_group.cc
index 2f96520a97..e2a23b5a17 100644
--- a/libs/ardour/route_group.cc
+++ b/libs/ardour/route_group.cc
@@ -80,16 +80,16 @@ RouteGroup::make_property_quarks ()
}
#define ROUTE_GROUP_DEFAULT_PROPERTIES _relative (Properties::relative, true) \
- , _active (Properties::active, false) \
+ , _active (Properties::active, true) \
, _hidden (Properties::hidden, false) \
- , _gain (Properties::gain, false) \
- , _mute (Properties::mute, false) \
- , _solo (Properties::solo, false) \
- , _recenable (Properties::recenable, false) \
- , _select (Properties::select, false) \
- , _route_active (Properties::route_active, false) \
- , _color (Properties::color, false) \
- , _monitoring (Properties::monitoring, false)
+ , _gain (Properties::gain, true) \
+ , _mute (Properties::mute, true) \
+ , _solo (Properties::solo, true) \
+ , _recenable (Properties::recenable, true) \
+ , _select (Properties::select, true) \
+ , _route_active (Properties::route_active, true) \
+ , _color (Properties::color, true) \
+ , _monitoring (Properties::monitoring, true)
RouteGroup::RouteGroup (Session& s, const string &n)
: SessionObject (s, n)