From 6e0fc35806a99a91a09980e26a4d53b9d5331657 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 6 Jan 2013 14:55:35 +0000 Subject: [PATCH] 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 --- gtk2_ardour/editor_drag.cc | 9 --------- 1 file changed, 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) {