[Summary] Fixed bug : 45119. Split makes 2 operations when using Select + Split key command

[Deatils] Fixed up region partitioning when slicing a range inside a region. Defect description is completely wrong. Region partitioning was not correct but NOT "split makes 2 operations".
[Reviewed by QA] MKosharniy
This commit is contained in:
GZharun 2015-01-28 18:19:00 +02:00
parent 15308340df
commit 9ff171d2b8

View file

@ -1018,7 +1018,7 @@ Playlist::flush_notifications (bool from_undo)
current->suspend_property_changes ();
thawlist.push_back (current);
current->cut_end (pos2 - 1);
current->cut_end (pos2);
} else if (overlap == Evoral::OverlapEnd) {
@ -1058,7 +1058,7 @@ Playlist::flush_notifications (bool from_undo)
current->suspend_property_changes ();
thawlist.push_back (current);
current->cut_end (pos2 - 1);
current->cut_end (pos2);
} else if (overlap == Evoral::OverlapStart) {