From d05a3f73050484868c8b4fcdf6a1df9715aba192 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 17 Sep 2010 23:43:23 +0000 Subject: [PATCH] copy edit comment git-svn-id: svn://localhost/ardour2/branches/3.0@7797 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_drag.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc index 95b41dcde4..6414c7cf5d 100644 --- a/gtk2_ardour/editor_drag.cc +++ b/gtk2_ardour/editor_drag.cc @@ -3699,9 +3699,12 @@ NoteDrag::total_dy () const } } - return -ndy; /* larger = higher, which is the inverse of the X-centric geometric universe */ -} - + /* more positive value = higher pitch and higher y-axis position on track, + which is the inverse of the X-centric geometric universe + */ + + return -ndy; +} void NoteDrag::motion (GdkEvent *, bool)