fix lack of range selection when moving vertically
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 26 Feb 2014 13:24:41 +0000 (08:24 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Wed, 26 Feb 2014 13:24:41 +0000 (08:24 -0500)
gtk2_ardour/editor_drag.cc

index a912716d7dfc0ca9622b8e03178f4db0f9100667..7ce4b6d96185402b2af89e5d63454d09f0152d75 100644 (file)
@@ -3790,7 +3790,7 @@ SelectionDrag::motion (GdkEvent* event, bool first_move)
 
        framepos_t const pending_position = adjusted_current_frame (event);
 
-       if (pending_position == last_pointer_frame()) {
+       if (_operation != CreateSelection && pending_position == last_pointer_frame()) {
                return;
        }