Don't try and split a region when dragging, should fix bug #6338

This commit is contained in:
Tim Mayberry 2015-09-16 16:28:18 +10:00
parent faa38a0d29
commit 7b82277c7e
1 changed files with 4 additions and 0 deletions

View File

@ -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);