The issue is at or around line 1214 in function Score::undoAddCR() (file libmscore/undo,cpp) which has been commented out: //if (t->elements().isEmpty() || t->elements().front() == cr) {
and replace by: if (t->elements().front() == cr) {
which will crash because the t tuplet will initially have no elements.
I tried switching the comments, but tuplets get weird! The logic of tuplet creation for linked staves is probably to be redone.
Comments
The issue is at or around line 1214 in function
Score::undoAddCR()
(file libmscore/undo,cpp) which has been commented out://if (t->elements().isEmpty() || t->elements().front() == cr) {
and replace by:
if (t->elements().front() == cr) {
which will crash because the
t
tuplet will initially have no elements.I tried switching the comments, but tuplets get weird! The logic of tuplet creation for linked staves is probably to be redone.
M.
Fixed in 55b3286d49
Automatically closed -- issue fixed for 2 weeks with no activity.