We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 389a5dc commit ceb9c8cCopy full SHA for ceb9c8c
1 file changed
src/engraving/dom/chord.cpp
@@ -786,10 +786,20 @@ void Chord::remove(EngravingItem* e)
786
{
787
Articulation* a = toArticulation(e);
788
if (!muse::remove(m_articulations, a)) {
789
- LOGD("ChordRest::remove(): articulation not found");
+ LOGD("Chord::remove(): articulation not found");
790
}
791
792
break;
793
+ case ElementType::PARENTHESIS: {
794
+ NoteParenthesisInfo* parenInfo = findNoteParenthesisInfo(toParenthesis(e));
795
+ IF_ASSERT_FAILED(parenInfo) {
796
+ LOGD() << "Chord::remove(): This parenthesis does not belong to this chord";
797
+ return;
798
+ }
799
+ EditChord::removeChordParentheses(this, parenInfo->notes());
800
+ break;
801
802
803
default:
804
ChordRest::remove(e);
805
return;
0 commit comments