Tips for removing overlapping notes within the same channel #187
-
This is my last question. Is there any built-in way or tips I can easily achieve this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hi, Unfortunately there is no built-in tool to solve the task. You need to iterate over notes manually and check whether they overlap another notes or not. So, for example, if we have notes
|
Beta Was this translation helpful? Give feedback.
Hi,
Unfortunately there is no built-in tool to solve the task. You need to iterate over notes manually and check whether they overlap another notes or not. So, for example, if we have notes
A
andB
, thenB
overlapsA
if:B.Time
greater than or equal toA.Time
andB.Time + B.Length
less than or equal toA.Time + A.Length
.