Skip to content

Commit

Permalink
Fix #326083: Capella (.cap) import does not handle breve notes correctly
Browse files Browse the repository at this point in the history
Backport of musescore#9647
  • Loading branch information
Jojo-Schmitz committed Nov 28, 2021
1 parent 0500e6a commit 107eb37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion importexport/capella/capella.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2641,7 +2641,7 @@ Fraction BasicDurationalObj::ticks() const
case TIMESTEP::D64: len = Fraction(1,64); break;
case TIMESTEP::D128: len = Fraction(1,128); break;
case TIMESTEP::D256: len = Fraction(1,256); break;
case TIMESTEP::D_BREVE: len = Fraction(2,2); break;
case TIMESTEP::D_BREVE: len = Fraction(2,1); break;
default:
qDebug("BasicDurationalObj::ticks: illegal duration value %d", int(t));
break;
Expand Down

0 comments on commit 107eb37

Please sign in to comment.