Hide TrackList "Active" toggle for VCAs

This commit is contained in:
Robin Gareus 2017-08-08 01:49:05 +02:00
parent 26dc287c00
commit 7c6800fb88
2 changed files with 6 additions and 7 deletions

View file

@ -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;
};