MusicXML import: no arpeggio on rests
This commit is contained in:
parent
24a6b12f10
commit
9fd56d7e56
1 changed files with 2 additions and 2 deletions
|
@ -4361,8 +4361,8 @@ void MusicXml::xmlNotations(Note* note, ChordRest* cr, int trk, int ticks, QDomE
|
|||
else
|
||||
domError(ee);
|
||||
}
|
||||
|
||||
if (!arpeggioType.isEmpty()) {
|
||||
// no support for arpeggio on rest
|
||||
if (!arpeggioType.isEmpty() && cr->type() == ElementType::CHORD) {
|
||||
Arpeggio* a = new Arpeggio(score);
|
||||
if (arpeggioType == "none")
|
||||
a->setArpeggioType(ArpeggioType::NORMAL);
|
||||
|
|
Loading…
Reference in a new issue