summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_regions.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-06-28 17:25:32 +0000
committerCarl Hetherington <carl@carlh.net>2010-06-28 17:25:32 +0000
commitcd1aaff19724221b99eeeab7798fb41c10985b82 (patch)
tree6973ed9266bedbdf16e7940d4bb75f97d18e12f1 /gtk2_ardour/editor_regions.h
parent678b0302e1ea108ce8cf034c31c16b24e57e9671 (diff)
Hide region list toggle columns for whole file regions.
git-svn-id: svn://localhost/ardour2/branches/3.0@7313 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_regions.h')
-rw-r--r--gtk2_ardour/editor_regions.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_regions.h b/gtk2_ardour/editor_regions.h
index d7f5d7490b..b17699e9e6 100644
--- a/gtk2_ardour/editor_regions.h
+++ b/gtk2_ardour/editor_regions.h
@@ -82,6 +82,7 @@ private:
add (opaque);
add (used);
add (path);
+ add (property_toggles_visible);
}
Gtk::TreeModelColumn<Glib::ustring> name;
@@ -99,6 +100,8 @@ private:
Gtk::TreeModelColumn<bool> opaque;
Gtk::TreeModelColumn<Glib::ustring> used;
Gtk::TreeModelColumn<Glib::ustring> path;
+ /** used to indicate whether the locked/glued/muted/opaque should be visible or not */
+ Gtk::TreeModelColumn<bool> property_toggles_visible;
};
Columns _columns;