summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/editor_drag.cc9
1 files 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)