fix problem with dragging an end range marker if the start of the range was near...
authorPaul Davis <paul@linuxaudiosystems.com>
Sun, 6 Jan 2013 14:55:35 +0000 (14:55 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Sun, 6 Jan 2013 14:55:35 +0000 (14:55 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@13795 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/editor_drag.cc

index 43fe62e7800cf6fa9ae9a57e9d3c477ddc7e0f7f..95b75db2eccc247e60ea204ee480c02180f96e33 100644 (file)
@@ -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) {