Amend c242cbc318 (VCA automation button)

This commit is contained in:
Robin Gareus 2017-07-21 13:01:43 +02:00
parent c242cbc318
commit 8400ebd175
2 changed files with 7 additions and 1 deletions

View File

@ -335,6 +335,7 @@ AutomationTimeAxisView::set_automation_state (AutoState state)
}
else if (_control) {
_control->set_automation_state (state);
_session->set_dirty ();
}
if (_view) {

View File

@ -292,7 +292,12 @@ GainMeterBase::set_gain_astate (AutoState as)
ChangeGainAutomationState (as);
return;
}
_amp->set_parameter_automation_state (Evoral::Parameter (GainAutomation), as);
if (_amp) {
_amp->set_parameter_automation_state (Evoral::Parameter (GainAutomation), as);
} else if (_control) {
_control->set_automation_state (as);
_session->set_dirty ();
}
}
void