fix #269280: Playback when adding an accidental

Make playback work when adding an accidental from the palette
This commit is contained in:
Matt McClinch 2018-02-15 12:10:50 -05:00
parent 5b6e61d6a7
commit a31d290013

View file

@ -1524,7 +1524,6 @@ void Score::changeAccidental(AccidentalType idx)
{
foreach(Note* note, selection().noteList())
changeAccidental(note, idx);
setPlayNote(true);
}
//---------------------------------------------------------
@ -1654,6 +1653,7 @@ void Score::changeAccidental(Note* note, AccidentalType accidental)
}
changeAccidental2(ln, pitch, tpc);
}
setPlayNote(true);
}
//---------------------------------------------------------