summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-08-08 01:49:05 +0200
committerRobin Gareus <robin@gareus.org>2017-08-08 01:49:05 +0200
commit7c6800fb88efc94d5cae435f4f3e12f6770c97a2 (patch)
tree0baf6bdee7dc32e3b06e02ffc0e82eaf72baf3cb /gtk2_ardour/editor_routes.h
parent26dc287c008607c43008a38448744bf7ae783687 (diff)
Hide TrackList "Active" toggle for VCAs
Diffstat (limited to 'gtk2_ardour/editor_routes.h')
-rw-r--r--gtk2_ardour/editor_routes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_routes.h b/gtk2_ardour/editor_routes.h
index fd2590cbc3..e9497edbbe 100644
--- a/gtk2_ardour/editor_routes.h
+++ b/gtk2_ardour/editor_routes.h
@@ -136,7 +136,7 @@ private:
add (name_editable);
add (is_input_active);
add (is_midi);
- add (is_vca);
+ add (no_vca);
add (active);
}
@@ -157,7 +157,7 @@ private:
Gtk::TreeModelColumn<bool> name_editable;
Gtk::TreeModelColumn<bool> is_input_active;
Gtk::TreeModelColumn<bool> is_midi;
- Gtk::TreeModelColumn<bool> is_vca;
+ Gtk::TreeModelColumn<bool> no_vca; // activatable
Gtk::TreeModelColumn<bool> active;
};