From ef79d1c4d4ce45c0ad14b3dcaaff723b5f521aa2 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 9 Feb 2015 12:43:20 -0500 Subject: [PATCH] fix last cherry-pick --- gtk2_ardour/editor_drag.cc | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc index 13b1e833f9..6239aea24d 100644 --- a/gtk2_ardour/editor_drag.cc +++ b/gtk2_ardour/editor_drag.cc @@ -1053,12 +1053,6 @@ RegionMoveDrag::finished_copy (bool const changed_position, bool const /*changed return; } - if (_x_constrained) { - _editor->begin_reversible_command (Operations::fixed_time_region_copy); - } else { - _editor->begin_reversible_command (Operations::region_copy); - } - typedef map, RouteTimeAxisView*> PlaylistMapping; PlaylistMapping playlist_mapping; @@ -1148,18 +1142,9 @@ RegionMoveDrag::finished_no_copy ( return; } -<<<<<<< HEAD -======= - if (_x_constrained) { - _editor->begin_reversible_command (_("fixed time region drag")); - } else { - _editor->begin_reversible_command (Operations::region_drag); - } - typedef map, RouteTimeAxisView*> PlaylistMapping; PlaylistMapping playlist_mapping; ->>>>>>> 1faf1a1... After dragging from multiple tracks to the dropzone, create the right number of new tracks. for (list::const_iterator i = _views.begin(); i != _views.end(); ) { RegionView* rv = i->view;