mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
More slaved_to() replacements, fix typo
This commit is contained in:
parent
593fa3c0c4
commit
61623f730c
1 changed files with 2 additions and 2 deletions
|
|
@ -102,7 +102,7 @@ ControlSlaveUI::update_vca_display ()
|
|||
|
||||
if (stripable) {
|
||||
for (VCAList::iterator v = vcas.begin(); v != vcas.end(); ++v) {
|
||||
if (stripable->gain_control()->slaved_to ((*v)->gain_control())) {
|
||||
if (stripable->slaved_to (*v)) {
|
||||
add_vca_button (*v);
|
||||
any = true;
|
||||
}
|
||||
|
|
@ -199,7 +199,7 @@ ControlSlaveUI::vca_button_release (GdkEventButton* ev, uint32_t n)
|
|||
items.push_back (CheckMenuElem ((*v)->name()));
|
||||
Gtk::CheckMenuItem* item = dynamic_cast<Gtk::CheckMenuItem*> (&items.back());
|
||||
|
||||
if (stripable->slaved_to (*i)) {
|
||||
if (stripable->slaved_to (*v)) {
|
||||
item->set_active (true);
|
||||
slaved = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue