mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
fix thinko in d2835bc80 (re-enables mute, solo and likely other automation controls)
This commit is contained in:
parent
39cad9ac00
commit
9a3c1dbfe7
1 changed files with 5 additions and 0 deletions
|
|
@ -147,9 +147,13 @@ AutomationControl::actually_set_value (double value, PBD::Controllable::GroupCon
|
||||||
if (al->automation_write ()) {
|
if (al->automation_write ()) {
|
||||||
to_list = true;
|
to_list = true;
|
||||||
old_value = Control::user_double ();
|
old_value = Control::user_double ();
|
||||||
|
std::cerr << "OV UD with al AL\n";
|
||||||
} else if (al->automation_playback()) {
|
} else if (al->automation_playback()) {
|
||||||
to_list = false;
|
to_list = false;
|
||||||
old_value = al->eval (pos);
|
old_value = al->eval (pos);
|
||||||
|
} else {
|
||||||
|
to_list = false;
|
||||||
|
old_value = Control::user_double ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -163,6 +167,7 @@ AutomationControl::actually_set_value (double value, PBD::Controllable::GroupCon
|
||||||
Changed (true, gcd);
|
Changed (true, gcd);
|
||||||
_session.set_dirty ();
|
_session.set_dirty ();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue