-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
[MU3] Porting some master changes/PRs to 3.x #6889
Conversation
Jojo-Schmitz
commented
Nov 19, 2020
- fix #98816 - wrong tie direction in tabs #6442 - Fix #98816 and fix #117351: Decouple tie direction from _notes order, and compare strings (not lines) in tabs
- fix #277800: allow to preserve ties when replacing measures (by removing and inserting them) #5566 - Fix #277800: Allow to preserve ties when replacing measures (by removing and inserting them)
… and compare strings (not lines) in tabs
…ing and inserting them)
vtest failure seems to be expected because of #6442 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vpereverzev @AntonioBL I think the problem was caused by this error in porting
by the way @Jojo-Schmitz thank you for creating this PR, saved me some time 👍
tieAbove = notes[i]; | ||
else if (compareNotesPos(notes[i], tieAbove) < 0) | ||
tieAbove = notes[i]; | ||
else if (noteDiff < 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (noteDiff > 0)
should close before the else if (noteDiff < 0)
block starts
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I might have removed a couple braces too much I guess...
@Git-Lior nice to see you around! Are you able to prepare a quick-fix then? |
Check #6892 |