Skip to content

Commit

Permalink
fix #15943: Tuplet creation from empty measures (whole rests)
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed May 10, 2013
1 parent c1b55b0 commit e65d6b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mscore/scoreview.cpp
Expand Up @@ -4006,7 +4006,7 @@ void ScoreView::setCursorVisible(bool v)

void ScoreView::cmdTuplet(int n, ChordRest* cr)
{
if (cr->durationType() < TDuration(TDuration::V_128TH)) {
if (cr->durationType() < TDuration(TDuration::V_128TH) && cr->durationType() != TDuration(TDuration::V_MEASURE)) {
mscore->noteTooShortForTupletDialog();
return;
}
Expand Down

0 comments on commit e65d6b8

Please sign in to comment.