13
0

MCP: fix confusion between normal and modified AutomationControl

git-svn-id: svn://localhost/ardour2/branches/3.0@11950 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-04-12 22:09:30 +00:00
parent 939801a8d8
commit 43556cce5a

View File

@ -111,7 +111,7 @@ Control::set_value (float val, bool modified)
if (modified && modified_ac) {
modified_ac->set_value (modified_ac->interface_to_internal (val));
} else if (normal_ac) {
normal_ac->set_value (modified_ac->interface_to_internal (val));
normal_ac->set_value (normal_ac->interface_to_internal (val));
}
}