Skip to content

Commit 5fc0aa1

Browse files
committed
Fix undo on partial tie selection drag move
1 parent cbd2e0f commit 5fc0aa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engraving/dom/edit.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -7553,7 +7553,7 @@ void Score::undoRemoveStaleTieJumpPoints(bool undo)
75537553
startCmd(TranslatableString("engraving", "Remove stale partial tie"));
75547554
undoRemoveElement(incomingPT);
75557555
endCmd();
7556-
if (undoIdx != undoStack()->currentIndex() && undoStack()->currentIndex() > 2) {
7556+
if (undoIdx != undoStack()->currentIndex() && undoStack()->currentIndex() >= 2) {
75577557
undoStack()->mergeCommands(undoStack()->currentIndex() - 2);
75587558
}
75597559
} else {

0 commit comments

Comments
 (0)