summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.h
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-11-18 00:08:47 +0000
committerCarl Hetherington <carl@carlh.net>2011-11-18 00:08:47 +0000
commit12e80812fdbfcf905d29b423485d103dedf1a92b (patch)
tree3ed15f70dfe37c6e78599269e7a54f8f95cb5654 /gtk2_ardour/editor_routes.h
parentadfce3b762fb67f91c98f491e319622dd5f67af8 (diff)
Remove solo buttons from the master route in the route list (#4486).
git-svn-id: svn://localhost/ardour2/branches/3.0@10667 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_routes.h')
-rw-r--r--gtk2_ardour/editor_routes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_routes.h b/gtk2_ardour/editor_routes.h
index 5fdbc3a9c1..5fad890faf 100644
--- a/gtk2_ardour/editor_routes.h
+++ b/gtk2_ardour/editor_routes.h
@@ -110,6 +110,7 @@ private:
add (rec_state);
add (mute_state);
add (solo_state);
+ add (solo_visible);
add (solo_isolate_state);
add (solo_safe_state);
add (is_track);
@@ -126,6 +127,8 @@ private:
Gtk::TreeModelColumn<uint32_t> rec_state;
Gtk::TreeModelColumn<uint32_t> mute_state;
Gtk::TreeModelColumn<uint32_t> solo_state;
+ /** true if the solo buttons are visible for this route, otherwise false */
+ Gtk::TreeModelColumn<bool> solo_visible;
Gtk::TreeModelColumn<uint32_t> solo_isolate_state;
Gtk::TreeModelColumn<uint32_t> solo_safe_state;
Gtk::TreeModelColumn<bool> is_track;