summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_line.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-21 13:55:49 +0200
committerRobin Gareus <robin@gareus.org>2017-06-21 18:13:36 +0200
commit8cd8cb165037906d5a35c8e147785845d0f4f808 (patch)
tree81176c9ed1e90a44953370729a6b0f1091bebe10 /gtk2_ardour/automation_line.cc
parentd85ce601589451f834b690c3c0da1df66d025700 (diff)
Temporary session-format compatibility (revert before release)
Saving the new ControlList interpolation methods (enum) breaks loading the session in older version. The session-format version will need to be increased. Until then: * Fader automation + region gain envelope uses linear fades * The automation-line visible in the GUI does not match the actual fade (the y-axis is log/exp-scale, the fade is linear) * Adding new points on the line is not using the correct initial value * Custom changes of interpolation mode are not available Neither of these issues is a regression.
Diffstat (limited to 'gtk2_ardour/automation_line.cc')
-rw-r--r--gtk2_ardour/automation_line.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index 9523df2c57..9c1aa13198 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -1168,6 +1168,7 @@ AutomationLine::view_to_model_coord (double& x, double& y) const
void
AutomationLine::view_to_model_coord_y (double& y) const
{
+#ifdef XXX_NEW_INTERPOLATON__BREAK_SESSION_FORMAT_XXX
if (alist->default_interpolation () != alist->interpolation()) {
switch (alist->interpolation()) {
case AutomationList::Linear:
@@ -1178,6 +1179,7 @@ AutomationLine::view_to_model_coord_y (double& y) const
break;
}
}
+#endif
y = _desc.from_interface (y);
}
@@ -1202,6 +1204,7 @@ AutomationLine::apply_delta (double& val, double delta) const
void
AutomationLine::model_to_view_coord_y (double& y) const
{
+#ifdef XXX_NEW_INTERPOLATON__BREAK_SESSION_FORMAT_XXX
if (alist->default_interpolation () != alist->interpolation()) {
switch (alist->interpolation()) {
case AutomationList::Linear:
@@ -1212,6 +1215,7 @@ AutomationLine::model_to_view_coord_y (double& y) const
break;
}
}
+#endif
y = _desc.to_interface (y);
}