We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e6b5d commit c949ed2Copy full SHA for c949ed2
src/notation/view/internal/partialtiepopupmodel.cpp
@@ -179,7 +179,9 @@ void mu::notation::PartialTiePopupModel::onClosed()
179
return;
180
}
181
182
- if (tieItem->allJumpPointsInactive()) {
+ Note* startNote = tieItem->startNote();
183
+
184
+ if (tieItem->allJumpPointsInactive() && startNote && startNote->tieFor() == tieItem) {
185
Score* score = tieItem->score();
186
beginCommand(TranslatableString("engraving", "Remove partial tie"));
187
score->undoRemoveElement(tieItem);
0 commit comments