From 7b82277c7e1a4ec41fadab33cf0a4730654da7eb Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Wed, 16 Sep 2015 16:28:18 +1000 Subject: [PATCH] Don't try and split a region when dragging, should fix bug #6338 --- gtk2_ardour/editor_ops.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gtk2_ardour/editor_ops.cc b/gtk2_ardour/editor_ops.cc index 2501b651fe..3cdeff7c6d 100644 --- a/gtk2_ardour/editor_ops.cc +++ b/gtk2_ardour/editor_ops.cc @@ -6123,6 +6123,10 @@ Editor::set_playhead_cursor () void Editor::split_region () { + if (_drags->active ()) { + return; + } + //if a range is selected, separate it if ( !selection->time.empty()) { separate_regions_between (selection->time);