From 42424eeb6c9b7e15c338445aa9942c48f91098aa Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 27 Oct 2015 20:53:51 +0100 Subject: another log-scale automation fix --- gtk2_ardour/automation_line.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc index b14dac6b35..2094d43eff 100644 --- a/gtk2_ardour/automation_line.cc +++ b/gtk2_ardour/automation_line.cc @@ -1226,7 +1226,7 @@ AutomationLine::model_to_view_coord_y (double& y) const if ( alist->parameter().type() == GainAutomation || alist->parameter().type() == EnvelopeAutomation || (_desc.logarithmic && _desc.lower == 0. && _desc.upper > _desc.lower)) { - y = gain_to_slider_position_with_max (y, Config->get_max_gain()); + y = gain_to_slider_position_with_max (y, _desc.upper); } else if (alist->parameter().type() == TrimAutomation || (_desc.logarithmic && _desc.lower * _desc.upper > 0 && _desc.upper > _desc.lower)) { const double lower_db = accurate_coefficient_to_dB (_desc.lower); -- cgit v1.2.3