-
Notifications
You must be signed in to change notification settings - Fork 407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
stripTies() needs to bridge voices #1134
Comments
Good problem diagnosis. Because it fixes an existing bug, it can go in the v7 release series also (milestone is still fine) -- no one is counting on this behavior. |
Maybe we want a |
Or, before falling back to id's and order of encountering them, we implement the VoiceSpanner idea from discussion on #915 and order it by order of the VoiceSpanners in the stream. |
music21 version
dev
Problem summary
stripTies() should bridge voices between measures rather than just flattening entire parts. Undesired deletions can happen. This was a known issue; we haven't made this worse recently AFAICT.
Steps to reproduce
Expected vs. actual behavior
Before stripping ties
After stripping ties (inappropriate deletion)
More information
We could match voices by
.id
or by sequence in the measure container. Matching by sequence will be easier after having a.sequence
attribute in #915.The text was updated successfully, but these errors were encountered: