Skip to content

Commit a0c3790

Browse files
committed
Fix missing parens on ornament cue notes
1 parent 3598969 commit a0c3790

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/engraving/dom/ornament.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,8 +418,8 @@ void Ornament::updateCueNote()
418418
m_cueNoteChord->add(cueNote);
419419
cueNote->setParent(m_cueNoteChord);
420420

421-
std::vector<Note*> notes = { cueNote };
422-
EditChord::addChordParentheses(const_cast<Chord*>(m_cueNoteChord), notes, false, true);//BROKEN
421+
std::list<Note*> notes = { cueNote };
422+
score()->cmdAddParenthesesToNotes(notes);
423423
}
424424
m_cueNoteChord->setTrack(track());
425425
m_cueNoteChord->setParent(parentChord->segment());

0 commit comments

Comments
 (0)