From 1d0abbdcd98ca66aa1a689bd766a843ee625e099 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 23 May 2010 01:51:17 +0000 Subject: [PATCH] Fix behaviour of route group list's visible checkbutton. git-svn-id: svn://localhost/ardour2/branches/3.0@7143 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_route_groups.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gtk2_ardour/editor_route_groups.cc b/gtk2_ardour/editor_route_groups.cc index e60f8f7dc2..ecd3d3e7c4 100644 --- a/gtk2_ardour/editor_route_groups.cc +++ b/gtk2_ardour/editor_route_groups.cc @@ -556,6 +556,8 @@ EditorRouteGroups::row_change (const Gtk::TreeModel::Path&, const Gtk::TreeModel plist.add (Properties::edit, val); plist.add (Properties::name, string ((*iter)[_columns.text])); + group->set_hidden (!(*iter)[_columns.is_visible], this); + group->set_properties (plist); }