From bf9e752b4d7308c5d6c9f082c3dff2047eaccf8a Mon Sep 17 00:00:00 2001 From: nick_m Date: Wed, 28 Oct 2015 03:14:10 +1100 Subject: [PATCH] AutomationLine::drag_motion () returns any clamped fractions correctly. --- gtk2_ardour/automation_line.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc index edefa38ac0..b14dac6b35 100644 --- a/gtk2_ardour/automation_line.cc +++ b/gtk2_ardour/automation_line.cc @@ -729,13 +729,13 @@ AutomationLine::drag_motion (double const x, float fraction, bool ignore_x, bool line->set_steps (line_points, is_stepped()); } } - + double const result_frac = _last_drag_fraction + dy; _drag_distance += dx; _drag_x += dx; - _last_drag_fraction = fraction; + _last_drag_fraction = result_frac; did_push = with_push; - return pair (_drag_x + dx, fraction); + return pair (_drag_x + dx, result_frac); } /** Should be called to indicate the end of a drag */