13
0

Make VCA mute+solo buttons bindable

This commit is contained in:
Robin Gareus 2017-07-03 19:55:17 +02:00
parent d76885e9ef
commit c1eee02e1b

View File

@ -87,6 +87,9 @@ VCAMasterStrip::VCAMasterStrip (Session* s, boost::shared_ptr<VCA> v)
solo_mute_box.pack_start (mute_button, true, true);
solo_mute_box.pack_start (solo_button, true, true);
mute_button.set_controllable (_vca->mute_control());
solo_button.set_controllable (_vca->solo_control());
number_label.set_text (PBD::to_string (v->number()));
number_label.set_elements((ArdourButton::Element)(ArdourButton::Edge|ArdourButton::Body|ArdourButton::Text|ArdourButton::Inactive));
number_label.set_no_show_all ();