Skip to content

Commit

Permalink
cheap fix #88291: disable shift+left/right in cases where it fails
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSabatella committed Nov 22, 2015
1 parent 648340f commit 3317556
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mscore/scoreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5935,7 +5935,8 @@ void ScoreView::cmdMoveCR(bool left)
break;
}
ChordRest* cr2 = left ? prevChordRest(cr1) : nextChordRest(cr1);
if (cr2 && cr1->measure() == cr2->measure()) {
if (cr2 && cr1->measure() == cr2->measure() && !cr1->tuplet() && !cr2->tuplet()
&& cr1->durationType() == cr2->durationType() && cr1->duration() == cr2->duration()) {
if (!cmdActive) {
_score->startCmd();
cmdActive = true;
Expand Down

0 comments on commit 3317556

Please sign in to comment.