13
0

Fix missing undo for record mute automation.

This commit is contained in:
nick_m 2015-11-02 05:34:09 +11:00
parent 7ade596c92
commit e709512f14

View File

@ -191,6 +191,9 @@ AutomationList::set_automation_state (AutoState s)
{
if (s != _state) {
_state = s;
if (s == Write) {
_before = &get_state ();
}
automation_state_changed (s); /* EMIT SIGNAL */
}
}