summaryrefslogtreecommitdiff
path: root/libs/ardour/route_group.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-04-06 00:36:36 +0000
committerCarl Hetherington <carl@carlh.net>2011-04-06 00:36:36 +0000
commit72f85f6cec86ff30de85103c11c11fcfa62f48b5 (patch)
tree29d860467cbdad5ea12ed7f810706feb10940e56 /libs/ardour/route_group.cc
parenteaf2c28d99e9af95a4aabfde2201a6a9596280a1 (diff)
Fix show checkbuttons for mixer groups on startup (#3919). Also synchronise visible status between editor and mixer.
git-svn-id: svn://localhost/ardour2/branches/3.0@9297 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route_group.cc')
-rw-r--r--libs/ardour/route_group.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/route_group.cc b/libs/ardour/route_group.cc
index ce760563ac..c64e5f77d1 100644
--- a/libs/ardour/route_group.cc
+++ b/libs/ardour/route_group.cc
@@ -377,6 +377,7 @@ RouteGroup::set_hidden (bool yn, void* /*src*/)
if (is_hidden() == yn) {
return;
}
+
if (yn) {
_hidden = true;
if (Config->get_hiding_groups_deactivates_groups()) {
@@ -388,6 +389,9 @@ RouteGroup::set_hidden (bool yn, void* /*src*/)
_active = true;
}
}
+
+ PropertyChanged (Properties::hidden); /* EMIT SIGNAL */
+
_session.set_dirty ();
}