mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-28 17:37:41 +01:00
[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:
parent
15308340df
commit
9ff171d2b8
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue