Skip to content

Commit

Permalink
fix #65831: basic bend properties not written / read
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSabatella committed Jun 18, 2015
1 parent eac0ed0 commit 8331ba5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libmscore/bend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ void Bend::write(Xml& xml) const
xml.tagE(QString("point time=\"%1\" pitch=\"%2\" vibrato=\"%3\"")
.arg(v.time).arg(v.pitch).arg(v.vibrato));
}
Element::writeProperties(xml);
xml.etag();
}

Expand All @@ -277,7 +278,7 @@ void Bend::read(XmlReader& e)
_points.append(pv);
e.readNext();
}
else
else if (!Element::readProperties(e))
e.unknown();
}
}
Expand Down

0 comments on commit 8331ba5

Please sign in to comment.