Skip to content

Commit

Permalink
fix #25424: ottava playback solved
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaRood committed Apr 16, 2014
1 parent 187353b commit e7f1c19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libmscore/ottava.cpp
Expand Up @@ -223,7 +223,7 @@ void Ottava::endEdit()
if (editTick != tick() || editTick2 != tick2()) {
Staff* s = staff();
s->pitchOffsets().remove(editTick);
s->pitchOffsets().remove(editTick2+1);
s->pitchOffsets().remove(editTick2);

s->updateOttava(this);
score()->addLayoutFlags(LAYOUT_FIX_PITCH_VELO);
Expand Down

0 comments on commit e7f1c19

Please sign in to comment.