summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2020-04-14 23:45:17 +0200
committerJohannes Mueller <github@johannes-mueller.org>2020-04-14 23:45:17 +0200
commit6d75d40533a8058db5ec791002dea9b09b0ff47f (patch)
treeef4b195b2db580a6e4f879231bf22da2cab0a5a2 /gtk2_ardour
parentd2f5edf64fdffb8e66139579e62b2237ca4a09cc (diff)
Quick and dirty dropping support for rippling across tracks
Ripple editing will be reworked some point after 6.0
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor_drag.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc
index 84dfe38cc3..d80cd5d630 100644
--- a/gtk2_ardour/editor_drag.cc
+++ b/gtk2_ardour/editor_drag.cc
@@ -2278,9 +2278,8 @@ RegionRippleDrag::RegionRippleDrag (Editor* e, ArdourCanvas::Item* i, RegionView
RegionSelection selected_regions = _editor->selection->regions;
selection_length = selected_regions.end_sample() - selected_regions.start();
- // we'll only allow dragging to another track in ripple mode if all the regions
- // being dragged start off on the same track
- allow_moves_across_tracks = (selected_regions.playlists().size() == 1);
+ // Rippling accross tracks disabled. Rippling on all tracks is the way to go in the future.
+ allow_moves_across_tracks = false; // (selected_regions.playlists().size() == 1);
prev_tav = NULL;
prev_amount = 0;
exclude = new RegionList;