Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/engraving/editing/edit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1816,7 +1816,7 @@ void Score::regroupNotesAndRests(const Fraction& startTick, const Fraction& endT
if (!cr) {
continue; // this voice is empty here
}
if (!cr->isRest() || cr->endTick() > maxTick || toRest(cr)->isGap()) {
if (!cr->isRest() || cr->tuplet() || cr->endTick() > maxTick || toRest(cr)->isGap()) {
break; // next element in the same voice is not a rest, or it exceeds the selection, or it is a gap
}
lastRest = cr;
Expand Down
Loading