summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_drag.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-01-06 14:55:35 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2013-01-06 14:55:35 +0000
commit6e0fc35806a99a91a09980e26a4d53b9d5331657 (patch)
treef0f3e521e4608244b16936589c321cf35121f9f6 /gtk2_ardour/editor_drag.cc
parent397729eb182ba3d5e311f0ac80959cf72f5cba24 (diff)
fix problem with dragging an end range marker if the start of the range was near zero
git-svn-id: svn://localhost/ardour2/branches/3.0@13795 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_drag.cc')
-rw-r--r--gtk2_ardour/editor_drag.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc
index 43fe62e780..95b75db2ec 100644
--- a/gtk2_ardour/editor_drag.cc
+++ b/gtk2_ardour/editor_drag.cc
@@ -2760,15 +2760,6 @@ MarkerDrag::motion (GdkEvent* event, bool)
framepos_t new_start = copy_location->start() + f_delta;
framepos_t new_end = copy_location->end() + f_delta;
- /* if we are moving multiple markers, we can have
- * forced earlier ones back before zero ... don't
- * do this
- */
-
- if (new_start < 0 || new_end < 0) {
- continue;
- }
-
if (is_start) { // start-of-range marker
if (move_both || (*x).move_both) {