diff --git a/demos/All_Dudes.mscz b/demos/All_Dudes.mscz index 6f256c5ce10ce..4c6932ec22fb7 100644 Binary files a/demos/All_Dudes.mscz and b/demos/All_Dudes.mscz differ diff --git a/demos/Amazing_grace.mscz b/demos/Amazing_grace.mscz index 83f978d55e356..8fce186205646 100644 Binary files a/demos/Amazing_grace.mscz and b/demos/Amazing_grace.mscz differ diff --git a/demos/Reunion.mscz b/demos/Reunion.mscz index cf62ceb27613f..29bb1b77b53cc 100644 Binary files a/demos/Reunion.mscz and b/demos/Reunion.mscz differ diff --git a/demos/Triumph.mscz b/demos/Triumph.mscz index 0dcb402b0d957..8b8af0818cdad 100644 Binary files a/demos/Triumph.mscz and b/demos/Triumph.mscz differ diff --git a/demos/adeste.mscx b/demos/adeste.mscx index fa126b56614d7..1ec2afc6e6bf5 100644 --- a/demos/adeste.mscx +++ b/demos/adeste.mscx @@ -1,22 +1,32 @@ - - 2.0.0 - 5524:5526M + + 2.0.2 + f51dc11 0 - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + 480 A @@ -146,19 +152,17 @@ half middle - des 1 begin - + Can 2 begin - Er @@ -174,19 +178,17 @@ quarter end - te, 1 end - + tet 2 end - go @@ -198,17 +200,15 @@ quarter begin - fi 1 - + nunc 2 - qui @@ -238,19 +238,17 @@ half middle - del 1 begin - + hym 2 begin - na @@ -266,19 +264,17 @@ half end - es, 1 end - + nos 2 end - tus @@ -304,19 +300,17 @@ quarter begin - Lae 1 begin - + Cho 2 begin - di @@ -332,19 +326,17 @@ quarter end - ti 1 end - + rus 2 end - e @@ -360,19 +352,17 @@ quarter begin - tri 1 begin - + ang 2 begin - ho @@ -388,19 +378,17 @@ quarter middle - um 1 middle - + el 2 middle - di @@ -418,19 +406,17 @@ half middle - phan 1 middle - + or 2 middle - er @@ -446,19 +432,17 @@ quarter end - tes 1 end - + um; 2 end - na @@ -473,7 +457,6 @@ quarter - Ven @@ -485,10 +468,6 @@ 17 - - normal - 1 - @@ -499,20 +478,6 @@ 3 - - 32 - - - - 32 - - - - 32 - - - 1 - 1 4 @@ -687,10 +652,6 @@ 17 - - normal - 1 - diff --git a/libmscore/box.cpp b/libmscore/box.cpp index 174d9a5e7e289..442d3aaa9e946 100644 --- a/libmscore/box.cpp +++ b/libmscore/box.cpp @@ -220,7 +220,7 @@ void Box::read(XmlReader& e) // with .msc versions prior to 1.17, box margins were only used when nesting another box inside this box: // for backward compatibility set them to 0 in all other cases - if (score()->mscVersion() < 117 && (type() == Element::Type::HBOX || type() == Element::Type::VBOX) && !keepMargins) { + if (score()->mscVersion() <= 114 && (type() == Element::Type::HBOX || type() == Element::Type::VBOX) && !keepMargins) { _leftMargin = _rightMargin = _topMargin = _bottomMargin = 0.0; } } @@ -238,12 +238,12 @@ bool Box::readProperties(XmlReader& e) _boxWidth = Spatium(e.readDouble()); else if (tag == "topGap") { _topGap = e.readDouble(); - if (score()->mscVersion() >= 203) + if (score()->mscVersion() >= 206) _topGap *= score()->spatium(); } else if (tag == "bottomGap") { _bottomGap = e.readDouble(); - if (score()->mscVersion() >= 203) + if (score()->mscVersion() >= 206) _bottomGap *= score()->spatium(); } else if (tag == "leftMargin") diff --git a/libmscore/chordrest.cpp b/libmscore/chordrest.cpp index f5c3e32f8997f..105ee5da7b194 100644 --- a/libmscore/chordrest.cpp +++ b/libmscore/chordrest.cpp @@ -273,7 +273,7 @@ bool ChordRest::readProperties(XmlReader& e) setDuration(actualDurationType().fraction()); } else { - if (score()->mscVersion() < 115) { + if (score()->mscVersion() <= 114) { SigEvent event = score()->sigmap()->timesig(e.tick()); setDuration(event.timesig()); } diff --git a/libmscore/dynamic.cpp b/libmscore/dynamic.cpp index 41bce17fe6ec1..1d0e7430ceb63 100644 --- a/libmscore/dynamic.cpp +++ b/libmscore/dynamic.cpp @@ -242,7 +242,7 @@ void Dynamic::read(XmlReader& e) void Dynamic::layout() { if (!readPos().isNull()) { - if (score()->mscVersion() < 118) { + if (score()->mscVersion() <= 114) { setReadPos(QPointF()); // hack: 1.2 boundingBoxes are a bit wider which results // in symbols moved right diff --git a/libmscore/image.cpp b/libmscore/image.cpp index 1d5f86dbddd5e..03d9aa7c7a706 100644 --- a/libmscore/image.cpp +++ b/libmscore/image.cpp @@ -370,7 +370,7 @@ void Image::write(Xml& xml) const void Image::read(XmlReader& e) { - if (score()->mscVersion() <= 123) + if (score()->mscVersion() <= 114) _sizeIsSpatium = false; while (e.readNextStartElement()) { diff --git a/libmscore/measure.cpp b/libmscore/measure.cpp index 5fff5c0997e43..d0110817cb0ae 100644 --- a/libmscore/measure.cpp +++ b/libmscore/measure.cpp @@ -1734,7 +1734,7 @@ void Measure::read(XmlReader& e, int staffIdx) breath->setTrack(e.track()); int tick = e.tick(); breath->read(e); - if (score()->mscVersion() < 205) { + if (score()->mscVersion() <= 206) { // older scores placed the breath segment right after the chord to which it applies // rather than before the next chordrest segment with an element for the staff // result would be layout too far left if there are other segments due to notes in other staves @@ -2129,39 +2129,7 @@ void Measure::read(XmlReader& e, int staffIdx) } } #endif - // - // for compatibility with 1.22: - // - if (score()->mscVersion() == 122) { - int ticks1 = 0; - for (Segment* s = last(); s; s = s->prev()) { - if (s->segmentType() == Segment::Type::ChordRest) { - if (s->element(0)) { - ChordRest* cr = static_cast(s->element(0)); - if (cr->type() == Element::Type::REPEAT_MEASURE) - ticks1 = ticks(); - else - ticks1 = s->rtick() + cr->actualTicks(); - break; - } - } - } - if (ticks() != ticks1) { - // this is a irregular measure - _len = Fraction::fromTicks(ticks1); - _len.reduce(); - for (Segment* s = last(); s; s = s->prev()) { - if (s->tick() < tick() + ticks()) - break; - if (s->segmentType() == Segment::Type::BarLine) { - qDebug("reduce BarLine to EndBarLine"); - s->setSegmentType(Segment::Type::EndBarLine); - } - } - - } - } - foreach (Tuplet* tuplet, e.tuplets()) { + for (Tuplet* tuplet : e.tuplets()) { if (tuplet->elements().empty()) { // this should not happen and is a sign of input file corruption qDebug("Measure:read(): empty tuplet id %d (%p), input file corrupted?", diff --git a/libmscore/note.cpp b/libmscore/note.cpp index 0e3cae38a90f8..32164f508ee44 100644 --- a/libmscore/note.cpp +++ b/libmscore/note.cpp @@ -853,7 +853,7 @@ void Note::read(XmlReader& e) a->read(e); if (!hasAccidental) // only the new accidental, if it has been added previously add(a); - if (score()->mscVersion() < 117) + if (score()->mscVersion() <= 114) hasAccidental = true; // we now have an accidental } else if (tag == "Tie") { @@ -1122,7 +1122,7 @@ void Note::read(XmlReader& e) // ensure sane values: _pitch = limit(_pitch, 0, 127); - if (score()->mscVersion() < 117) { + if (score()->mscVersion() <= 114) { if (concertPitch()) { _tpc[1] = Tpc::TPC_INVALID; } diff --git a/libmscore/scorefile.cpp b/libmscore/scorefile.cpp index e030e1d837fa0..18fa6285487da 100644 --- a/libmscore/scorefile.cpp +++ b/libmscore/scorefile.cpp @@ -674,7 +674,7 @@ void Score::saveFile(QIODevice* f, bool msczFormat, bool onlySelection) xml.tag("programRevision", revision); } else { - xml.stag("museScore version=\"2.00\""); + xml.stag("museScore version=\"2.06\""); } write(xml, onlySelection); xml.etag(); @@ -905,7 +905,7 @@ Score::FileError MasterScore::read1(XmlReader& e, bool ignoreVersionError) QString message; if (mscVersion() > MSCVERSION) return FileError::FILE_TOO_NEW; - if (mscVersion() < 200) + if (mscVersion() < 206) return FileError::FILE_TOO_OLD; } diff --git a/libmscore/slur.cpp b/libmscore/slur.cpp index 2dc2af17ab038..fe500eff172ae 100644 --- a/libmscore/slur.cpp +++ b/libmscore/slur.cpp @@ -646,7 +646,7 @@ void SlurSegment::layoutSegment(const QPointF& p1, const QPointF& p2) } } setbbox(path.boundingRect()); - if ((staffIdx() > 0) && score()->mscVersion() < 201 && !readPos().isNull()) { + if ((staffIdx() > 0) && score()->mscVersion() < 206 && !readPos().isNull()) { QPointF staffOffset; if (system() && track() >= 0) staffOffset = QPointF(0.0, system()->staff(staffIdx())->y()); diff --git a/libmscore/tempotext.cpp b/libmscore/tempotext.cpp index f2f0d49e2cf16..679eecdec2dec 100644 --- a/libmscore/tempotext.cpp +++ b/libmscore/tempotext.cpp @@ -64,7 +64,7 @@ void TempoText::read(XmlReader& e) else if (!Text::readProperties(e)) e.unknown(); } - if (score()->mscVersion() < 119) { + if (score()->mscVersion() <= 114) { // // Reset text in old version to // style. diff --git a/libmscore/timesig.cpp b/libmscore/timesig.cpp index f6c9447a5a98f..bf5b50f8a5f54 100644 --- a/libmscore/timesig.cpp +++ b/libmscore/timesig.cpp @@ -201,14 +201,7 @@ void TimeSig::read(XmlReader& e) } else if (tag == "subtype") { int i = e.readInt(); - if (score()->mscVersion() < 122 && score()->mscVersion() > 114) { - setSig(Fraction( - ((i >> 24) & 0x3f) - + ((i >> 18) & 0x3f) - + ((i >> 12) & 0x3f) - + ((i >> 6) & 0x3f), i & 0x3f), TimeSigType::NORMAL); - } - else if (score()->mscVersion() <= 114) { + if (score()->mscVersion() <= 114) { if (i == 0x40000104) _timeSigType = TimeSigType::FOUR_FOUR; else if (i == 0x40002084) diff --git a/mscore/file.cpp b/mscore/file.cpp index 2459465b5a087..7ae6e2bbbd799 100644 --- a/mscore/file.cpp +++ b/mscore/file.cpp @@ -164,7 +164,10 @@ static bool readScoreError(const QString& name, Score::FileError error, bool ask case Score::FileError::FILE_TOO_OLD: msg += QObject::tr("It was last saved with a version older than 2.0.0.\n" "You can convert this score by opening and then\n" - "saving with MuseScore version 2.x"); + "saving with MuseScore version 2.x.\n" + "Visit the %1MuseScore download page%2 to obtain such a 2.x version.") + .arg("") + .arg(""); canIgnore = true; break; case Score::FileError::FILE_TOO_NEW: diff --git a/mtest/biab/chords-ref.mscx b/mtest/biab/chords-ref.mscx index 0f68f688b38cc..765749e092c2b 100644 --- a/mtest/biab/chords-ref.mscx +++ b/mtest/biab/chords-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test1.cap-ref.mscx b/mtest/capella/io/test1.cap-ref.mscx index e1cf46acb5b47..7622567c51c2b 100644 --- a/mtest/capella/io/test1.cap-ref.mscx +++ b/mtest/capella/io/test1.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test1.capx-ref.mscx b/mtest/capella/io/test1.capx-ref.mscx index 4dd3ca9f4167b..4bbd933743779 100644 --- a/mtest/capella/io/test1.capx-ref.mscx +++ b/mtest/capella/io/test1.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test2.cap-ref.mscx b/mtest/capella/io/test2.cap-ref.mscx index 3819088d346ca..21ed87607ffd8 100644 --- a/mtest/capella/io/test2.cap-ref.mscx +++ b/mtest/capella/io/test2.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test2.capx-ref.mscx b/mtest/capella/io/test2.capx-ref.mscx index a3d8b6dcb0e67..a0249ad9ba99f 100644 --- a/mtest/capella/io/test2.capx-ref.mscx +++ b/mtest/capella/io/test2.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test3.cap-ref.mscx b/mtest/capella/io/test3.cap-ref.mscx index 27be1eb7fc70d..1eba495e8786f 100644 --- a/mtest/capella/io/test3.cap-ref.mscx +++ b/mtest/capella/io/test3.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test3.capx-ref.mscx b/mtest/capella/io/test3.capx-ref.mscx index aa836dc1feaf9..9720e39ebf6ce 100644 --- a/mtest/capella/io/test3.capx-ref.mscx +++ b/mtest/capella/io/test3.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test4.cap-ref.mscx b/mtest/capella/io/test4.cap-ref.mscx index abfc179d7c81d..703d8f9dcd28d 100644 --- a/mtest/capella/io/test4.cap-ref.mscx +++ b/mtest/capella/io/test4.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test4.capx-ref.mscx b/mtest/capella/io/test4.capx-ref.mscx index 07302410f74aa..c38b243cbebe1 100644 --- a/mtest/capella/io/test4.capx-ref.mscx +++ b/mtest/capella/io/test4.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test5.cap-ref.mscx b/mtest/capella/io/test5.cap-ref.mscx index b9e5a75c67b76..06dd66647d026 100644 --- a/mtest/capella/io/test5.cap-ref.mscx +++ b/mtest/capella/io/test5.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test5.capx-ref.mscx b/mtest/capella/io/test5.capx-ref.mscx index 8ab8fed847eb2..40f23f2658089 100644 --- a/mtest/capella/io/test5.capx-ref.mscx +++ b/mtest/capella/io/test5.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test6.cap-ref.mscx b/mtest/capella/io/test6.cap-ref.mscx index ecc07a266cb59..fd3c69f7bc58c 100644 --- a/mtest/capella/io/test6.cap-ref.mscx +++ b/mtest/capella/io/test6.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test6.capx-ref.mscx b/mtest/capella/io/test6.capx-ref.mscx index bad1a4c79d064..5b18d1acdc52e 100644 --- a/mtest/capella/io/test6.capx-ref.mscx +++ b/mtest/capella/io/test6.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test7.cap-ref.mscx b/mtest/capella/io/test7.cap-ref.mscx index a26ded0a705eb..0911cab357c8b 100644 --- a/mtest/capella/io/test7.cap-ref.mscx +++ b/mtest/capella/io/test7.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test7.capx-ref.mscx b/mtest/capella/io/test7.capx-ref.mscx index 18a61428a47be..fa446cb212c1d 100644 --- a/mtest/capella/io/test7.capx-ref.mscx +++ b/mtest/capella/io/test7.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/test8.cap-ref.mscx b/mtest/capella/io/test8.cap-ref.mscx index e87fd350cfbd2..92720c7cd3008 100644 --- a/mtest/capella/io/test8.cap-ref.mscx +++ b/mtest/capella/io/test8.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testBarline.capx-ref.mscx b/mtest/capella/io/testBarline.capx-ref.mscx index 5a5c0d44f7429..3f8d01b9f424d 100644 --- a/mtest/capella/io/testBarline.capx-ref.mscx +++ b/mtest/capella/io/testBarline.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testPianoG4G5.capx-ref.mscx b/mtest/capella/io/testPianoG4G5.capx-ref.mscx index 4b8a02db9f090..c2c2aa4877b8c 100644 --- a/mtest/capella/io/testPianoG4G5.capx-ref.mscx +++ b/mtest/capella/io/testPianoG4G5.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testScaleC4C5.capx-ref.mscx b/mtest/capella/io/testScaleC4C5.capx-ref.mscx index 9270ff958ed57..5b2d098a98f99 100644 --- a/mtest/capella/io/testScaleC4C5.capx-ref.mscx +++ b/mtest/capella/io/testScaleC4C5.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testSlurTie.capx-ref.mscx b/mtest/capella/io/testSlurTie.capx-ref.mscx index 56316e52b6410..3895d6e3fe648 100644 --- a/mtest/capella/io/testSlurTie.capx-ref.mscx +++ b/mtest/capella/io/testSlurTie.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testText1.capx-ref.mscx b/mtest/capella/io/testText1.capx-ref.mscx index 106dcbc6d88bc..758d1ec29b90e 100644 --- a/mtest/capella/io/testText1.capx-ref.mscx +++ b/mtest/capella/io/testText1.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testTuplet1.capx-ref.mscx b/mtest/capella/io/testTuplet1.capx-ref.mscx index 5d61b5c45146f..9f2a5ccacc5d8 100644 --- a/mtest/capella/io/testTuplet1.capx-ref.mscx +++ b/mtest/capella/io/testTuplet1.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testTuplet2.cap-ref.mscx b/mtest/capella/io/testTuplet2.cap-ref.mscx index 8f0515665609b..d1c2ec5f8c7cc 100644 --- a/mtest/capella/io/testTuplet2.cap-ref.mscx +++ b/mtest/capella/io/testTuplet2.cap-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testTuplet2.capx-ref.mscx b/mtest/capella/io/testTuplet2.capx-ref.mscx index 8f0515665609b..d1c2ec5f8c7cc 100644 --- a/mtest/capella/io/testTuplet2.capx-ref.mscx +++ b/mtest/capella/io/testTuplet2.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/capella/io/testVolta1.capx-ref.mscx b/mtest/capella/io/testVolta1.capx-ref.mscx index b4f23aca5617e..b68b7d81856eb 100644 --- a/mtest/capella/io/testVolta1.capx-ref.mscx +++ b/mtest/capella/io/testVolta1.capx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/accent.gpx-ref.mscx b/mtest/guitarpro/accent.gpx-ref.mscx index 17bad13fdb499..cfb04a48bd636 100644 --- a/mtest/guitarpro/accent.gpx-ref.mscx +++ b/mtest/guitarpro/accent.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/all-percussion.gp5-ref.mscx b/mtest/guitarpro/all-percussion.gp5-ref.mscx index 585ce530d96bb..24b14578b18b3 100644 --- a/mtest/guitarpro/all-percussion.gp5-ref.mscx +++ b/mtest/guitarpro/all-percussion.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/arpeggio.gpx-ref.mscx b/mtest/guitarpro/arpeggio.gpx-ref.mscx index 2cd2604c9428e..973b9f5abebaa 100644 --- a/mtest/guitarpro/arpeggio.gpx-ref.mscx +++ b/mtest/guitarpro/arpeggio.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/artificial-harmonic.gpx-ref.mscx b/mtest/guitarpro/artificial-harmonic.gpx-ref.mscx index 56b2273da2ffc..f476f26c8d4d6 100644 --- a/mtest/guitarpro/artificial-harmonic.gpx-ref.mscx +++ b/mtest/guitarpro/artificial-harmonic.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/barre.gpx-ref.mscx b/mtest/guitarpro/barre.gpx-ref.mscx index 98bc2cee4a0d0..faf355830dfa8 100644 --- a/mtest/guitarpro/barre.gpx-ref.mscx +++ b/mtest/guitarpro/barre.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/basic-bend.gp5-ref.mscx b/mtest/guitarpro/basic-bend.gp5-ref.mscx index 35df03db0a292..04c68a8830a72 100644 --- a/mtest/guitarpro/basic-bend.gp5-ref.mscx +++ b/mtest/guitarpro/basic-bend.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/beams-stems-ledger-lines.gp5-ref.mscx b/mtest/guitarpro/beams-stems-ledger-lines.gp5-ref.mscx index b639d5e302b55..b3d0027c677de 100644 --- a/mtest/guitarpro/beams-stems-ledger-lines.gp5-ref.mscx +++ b/mtest/guitarpro/beams-stems-ledger-lines.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/bend.gp3-ref.mscx b/mtest/guitarpro/bend.gp3-ref.mscx index efb99bf579fa2..2cb24e57e90b0 100644 --- a/mtest/guitarpro/bend.gp3-ref.mscx +++ b/mtest/guitarpro/bend.gp3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/bend.gp4-ref.mscx b/mtest/guitarpro/bend.gp4-ref.mscx index 3ce972000780f..8d5f2f3f00859 100644 --- a/mtest/guitarpro/bend.gp4-ref.mscx +++ b/mtest/guitarpro/bend.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/bend.gp5-ref.mscx b/mtest/guitarpro/bend.gp5-ref.mscx index 648e3bcffaa9a..3117e1efc3679 100644 --- a/mtest/guitarpro/bend.gp5-ref.mscx +++ b/mtest/guitarpro/bend.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/brush.gp4-ref.mscx b/mtest/guitarpro/brush.gp4-ref.mscx index 05aa1b7f863c8..96c01b46e867b 100644 --- a/mtest/guitarpro/brush.gp4-ref.mscx +++ b/mtest/guitarpro/brush.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/brush.gp5-ref.mscx b/mtest/guitarpro/brush.gp5-ref.mscx index 6b79c8e674573..1230a62140b7c 100644 --- a/mtest/guitarpro/brush.gp5-ref.mscx +++ b/mtest/guitarpro/brush.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/brush.gpx-ref.mscx b/mtest/guitarpro/brush.gpx-ref.mscx index 9d28491962e0c..7f18009191f85 100644 --- a/mtest/guitarpro/brush.gpx-ref.mscx +++ b/mtest/guitarpro/brush.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/copyright.gp3-ref.mscx b/mtest/guitarpro/copyright.gp3-ref.mscx index ffdfb4cf76d37..e684db2e7274d 100644 --- a/mtest/guitarpro/copyright.gp3-ref.mscx +++ b/mtest/guitarpro/copyright.gp3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/copyright.gp4-ref.mscx b/mtest/guitarpro/copyright.gp4-ref.mscx index 7ad56e3d11bf2..bbf2778aa3e94 100644 --- a/mtest/guitarpro/copyright.gp4-ref.mscx +++ b/mtest/guitarpro/copyright.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/copyright.gp5-ref.mscx b/mtest/guitarpro/copyright.gp5-ref.mscx index efef5d0423ab3..9b1b91f0542c9 100644 --- a/mtest/guitarpro/copyright.gp5-ref.mscx +++ b/mtest/guitarpro/copyright.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/copyright.gpx-ref.mscx b/mtest/guitarpro/copyright.gpx-ref.mscx index 83b2359fbac9c..4aa82b03067d0 100644 --- a/mtest/guitarpro/copyright.gpx-ref.mscx +++ b/mtest/guitarpro/copyright.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/crescendo-diminuendo.gpx-ref.mscx b/mtest/guitarpro/crescendo-diminuendo.gpx-ref.mscx index 897196db5e6bf..4c77ff6edb626 100644 --- a/mtest/guitarpro/crescendo-diminuendo.gpx-ref.mscx +++ b/mtest/guitarpro/crescendo-diminuendo.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/dead-note.gpx-ref.mscx b/mtest/guitarpro/dead-note.gpx-ref.mscx index 29611b36754ef..c6ef2d3b3fac2 100644 --- a/mtest/guitarpro/dead-note.gpx-ref.mscx +++ b/mtest/guitarpro/dead-note.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/directions.gpx-ref.mscx b/mtest/guitarpro/directions.gpx-ref.mscx index 41a9f98518db3..3c60c1a4b119b 100644 --- a/mtest/guitarpro/directions.gpx-ref.mscx +++ b/mtest/guitarpro/directions.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/dotted-gliss.gp3-ref.mscx b/mtest/guitarpro/dotted-gliss.gp3-ref.mscx index ff09a0aeda300..aca4a49abe981 100644 --- a/mtest/guitarpro/dotted-gliss.gp3-ref.mscx +++ b/mtest/guitarpro/dotted-gliss.gp3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/dotted-tuplets.gp5-ref.mscx b/mtest/guitarpro/dotted-tuplets.gp5-ref.mscx index ba3e823f45907..ad9742a99e71b 100644 --- a/mtest/guitarpro/dotted-tuplets.gp5-ref.mscx +++ b/mtest/guitarpro/dotted-tuplets.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/double-bar.gpx-ref.mscx b/mtest/guitarpro/double-bar.gpx-ref.mscx index 2c2378b62d5ba..92d868fa149fd 100644 --- a/mtest/guitarpro/double-bar.gpx-ref.mscx +++ b/mtest/guitarpro/double-bar.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/dynamic.gp5-ref.mscx b/mtest/guitarpro/dynamic.gp5-ref.mscx index 24ee3244291ba..ccd03941fa96e 100644 --- a/mtest/guitarpro/dynamic.gp5-ref.mscx +++ b/mtest/guitarpro/dynamic.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fade-in.gp4-ref.mscx b/mtest/guitarpro/fade-in.gp4-ref.mscx index 24bde8083fd19..6c7aefc3224f9 100644 --- a/mtest/guitarpro/fade-in.gp4-ref.mscx +++ b/mtest/guitarpro/fade-in.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fade-in.gp5-ref.mscx b/mtest/guitarpro/fade-in.gp5-ref.mscx index 48ccfe99eafb1..1864fe968a37c 100644 --- a/mtest/guitarpro/fade-in.gp5-ref.mscx +++ b/mtest/guitarpro/fade-in.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fermata.gpx-ref.mscx b/mtest/guitarpro/fermata.gpx-ref.mscx index 97a662f13bab0..951c2dfe16260 100644 --- a/mtest/guitarpro/fermata.gpx-ref.mscx +++ b/mtest/guitarpro/fermata.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fingering.gp4-ref.mscx b/mtest/guitarpro/fingering.gp4-ref.mscx index 8ce96c55ba9a0..fa8e2a9a17cff 100644 --- a/mtest/guitarpro/fingering.gp4-ref.mscx +++ b/mtest/guitarpro/fingering.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fingering.gp5-ref.mscx b/mtest/guitarpro/fingering.gp5-ref.mscx index 3e0424034feb8..aac55cd8fdf9b 100644 --- a/mtest/guitarpro/fingering.gp5-ref.mscx +++ b/mtest/guitarpro/fingering.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fingering.gpx-ref.mscx b/mtest/guitarpro/fingering.gpx-ref.mscx index 8f3c3b1fa4aaa..501f7b1605f58 100644 --- a/mtest/guitarpro/fingering.gpx-ref.mscx +++ b/mtest/guitarpro/fingering.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/free-time.gpx-ref.mscx b/mtest/guitarpro/free-time.gpx-ref.mscx index acebaa6b5ec3e..b91d190b47c67 100644 --- a/mtest/guitarpro/free-time.gpx-ref.mscx +++ b/mtest/guitarpro/free-time.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fret-diagram.gp4-ref.mscx b/mtest/guitarpro/fret-diagram.gp4-ref.mscx index f2d5ec2af6a65..3d1c0cf396e93 100644 --- a/mtest/guitarpro/fret-diagram.gp4-ref.mscx +++ b/mtest/guitarpro/fret-diagram.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fret-diagram.gp5-ref.mscx b/mtest/guitarpro/fret-diagram.gp5-ref.mscx index 16dc50b8bf812..23a7c18b2523b 100644 --- a/mtest/guitarpro/fret-diagram.gp5-ref.mscx +++ b/mtest/guitarpro/fret-diagram.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/fret-diagram.gpx-ref.mscx b/mtest/guitarpro/fret-diagram.gpx-ref.mscx index d69ef950da8c4..63b521fd81494 100644 --- a/mtest/guitarpro/fret-diagram.gpx-ref.mscx +++ b/mtest/guitarpro/fret-diagram.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/ghost-note.gpx-ref.mscx b/mtest/guitarpro/ghost-note.gpx-ref.mscx index 7487cb6ea59e3..1b972237ed108 100644 --- a/mtest/guitarpro/ghost-note.gpx-ref.mscx +++ b/mtest/guitarpro/ghost-note.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/ghost_note.gp3-ref.mscx b/mtest/guitarpro/ghost_note.gp3-ref.mscx index 5b4d06536e5c0..c47244d84153b 100644 --- a/mtest/guitarpro/ghost_note.gp3-ref.mscx +++ b/mtest/guitarpro/ghost_note.gp3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/grace-before-beat.gpx-ref.mscx b/mtest/guitarpro/grace-before-beat.gpx-ref.mscx index bcac30094a26d..55aecc7bae9d5 100644 --- a/mtest/guitarpro/grace-before-beat.gpx-ref.mscx +++ b/mtest/guitarpro/grace-before-beat.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/grace-on-beat.gpx-ref.mscx b/mtest/guitarpro/grace-on-beat.gpx-ref.mscx index 205c913f84a9a..4aaded9518903 100644 --- a/mtest/guitarpro/grace-on-beat.gpx-ref.mscx +++ b/mtest/guitarpro/grace-on-beat.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/grace.gp5-ref.mscx b/mtest/guitarpro/grace.gp5-ref.mscx index 6fb29254c463f..f8e3e67735c14 100644 --- a/mtest/guitarpro/grace.gp5-ref.mscx +++ b/mtest/guitarpro/grace.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/heavy-accent.gp5-ref.mscx b/mtest/guitarpro/heavy-accent.gp5-ref.mscx index 5c2a8ec3922cb..0196ace1c215d 100644 --- a/mtest/guitarpro/heavy-accent.gp5-ref.mscx +++ b/mtest/guitarpro/heavy-accent.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/high-pitch.gp3-ref.mscx b/mtest/guitarpro/high-pitch.gp3-ref.mscx index d7d1913bb4a0b..c530242202b6f 100644 --- a/mtest/guitarpro/high-pitch.gp3-ref.mscx +++ b/mtest/guitarpro/high-pitch.gp3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/keysig.gp4-ref.mscx b/mtest/guitarpro/keysig.gp4-ref.mscx index edf1a223a3f29..bbab988728901 100644 --- a/mtest/guitarpro/keysig.gp4-ref.mscx +++ b/mtest/guitarpro/keysig.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/keysig.gp5-ref.mscx b/mtest/guitarpro/keysig.gp5-ref.mscx index e922256d22b4c..522c885c304d9 100644 --- a/mtest/guitarpro/keysig.gp5-ref.mscx +++ b/mtest/guitarpro/keysig.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/legato-slide.gp4-ref.mscx b/mtest/guitarpro/legato-slide.gp4-ref.mscx index cf2cf02a22f43..0df7c009308f6 100644 --- a/mtest/guitarpro/legato-slide.gp4-ref.mscx +++ b/mtest/guitarpro/legato-slide.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/legato-slide.gp5-ref.mscx b/mtest/guitarpro/legato-slide.gp5-ref.mscx index 4abdc3e0b7a5a..ea10fa71fce1e 100644 --- a/mtest/guitarpro/legato-slide.gp5-ref.mscx +++ b/mtest/guitarpro/legato-slide.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/legato-slide.gpx-ref.mscx b/mtest/guitarpro/legato-slide.gpx-ref.mscx index e21c45bfe3160..007f6123cfa3d 100644 --- a/mtest/guitarpro/legato-slide.gpx-ref.mscx +++ b/mtest/guitarpro/legato-slide.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/let-ring.gp4-ref.mscx b/mtest/guitarpro/let-ring.gp4-ref.mscx index 4523b36d7b94c..b983713914d54 100644 --- a/mtest/guitarpro/let-ring.gp4-ref.mscx +++ b/mtest/guitarpro/let-ring.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/let-ring.gp5-ref.mscx b/mtest/guitarpro/let-ring.gp5-ref.mscx index 17e07ded24e9d..b47bfbcc2f115 100644 --- a/mtest/guitarpro/let-ring.gp5-ref.mscx +++ b/mtest/guitarpro/let-ring.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/let-ring.gpx-ref.mscx b/mtest/guitarpro/let-ring.gpx-ref.mscx index dee4715d76879..6eecca5d7cd84 100644 --- a/mtest/guitarpro/let-ring.gpx-ref.mscx +++ b/mtest/guitarpro/let-ring.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/mordents.gpx-ref.mscx b/mtest/guitarpro/mordents.gpx-ref.mscx index 17ee9fa965396..f04af9c306055 100644 --- a/mtest/guitarpro/mordents.gpx-ref.mscx +++ b/mtest/guitarpro/mordents.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/multivoices.gpx-ref.mscx b/mtest/guitarpro/multivoices.gpx-ref.mscx index 61f813d9b4134..d271c54c403e9 100644 --- a/mtest/guitarpro/multivoices.gpx-ref.mscx +++ b/mtest/guitarpro/multivoices.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/palm-mute.gp4-ref.mscx b/mtest/guitarpro/palm-mute.gp4-ref.mscx index 42a01e57a312a..4f0fae18af5bf 100644 --- a/mtest/guitarpro/palm-mute.gp4-ref.mscx +++ b/mtest/guitarpro/palm-mute.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/palm-mute.gp5-ref.mscx b/mtest/guitarpro/palm-mute.gp5-ref.mscx index 450ce09159a51..52a44a31a3522 100644 --- a/mtest/guitarpro/palm-mute.gp5-ref.mscx +++ b/mtest/guitarpro/palm-mute.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/palm-mute.gpx-ref.mscx b/mtest/guitarpro/palm-mute.gpx-ref.mscx index cb0e5787af0e0..b43a846316992 100644 --- a/mtest/guitarpro/palm-mute.gpx-ref.mscx +++ b/mtest/guitarpro/palm-mute.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/pick-up-down.gp4-ref.mscx b/mtest/guitarpro/pick-up-down.gp4-ref.mscx index d72499f49bc33..faee5eeb02438 100644 --- a/mtest/guitarpro/pick-up-down.gp4-ref.mscx +++ b/mtest/guitarpro/pick-up-down.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/pick-up-down.gp5-ref.mscx b/mtest/guitarpro/pick-up-down.gp5-ref.mscx index c474f084ee5e0..4b18e7b51a018 100644 --- a/mtest/guitarpro/pick-up-down.gp5-ref.mscx +++ b/mtest/guitarpro/pick-up-down.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/pick-up-down.gpx-ref.mscx b/mtest/guitarpro/pick-up-down.gpx-ref.mscx index cdf9e19497e76..92e122e5ad815 100644 --- a/mtest/guitarpro/pick-up-down.gpx-ref.mscx +++ b/mtest/guitarpro/pick-up-down.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/rasg.gpx-ref.mscx b/mtest/guitarpro/rasg.gpx-ref.mscx index abb995e86874f..8881aa86bf839 100644 --- a/mtest/guitarpro/rasg.gpx-ref.mscx +++ b/mtest/guitarpro/rasg.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/repeated-bars.gpx-ref.mscx b/mtest/guitarpro/repeated-bars.gpx-ref.mscx index ed07673ea8bee..6a7919a9374e0 100644 --- a/mtest/guitarpro/repeated-bars.gpx-ref.mscx +++ b/mtest/guitarpro/repeated-bars.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/repeats.gpx-ref.mscx b/mtest/guitarpro/repeats.gpx-ref.mscx index 63becfd4ea57f..949f0e835b3f1 100644 --- a/mtest/guitarpro/repeats.gpx-ref.mscx +++ b/mtest/guitarpro/repeats.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/rest-centered.gp4-ref.mscx b/mtest/guitarpro/rest-centered.gp4-ref.mscx index 94ddd52d8db07..bbb057f611b95 100644 --- a/mtest/guitarpro/rest-centered.gp4-ref.mscx +++ b/mtest/guitarpro/rest-centered.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/rest-centered.gp5-ref.mscx b/mtest/guitarpro/rest-centered.gp5-ref.mscx index e52838326a30e..05863ef5bc6f5 100644 --- a/mtest/guitarpro/rest-centered.gp5-ref.mscx +++ b/mtest/guitarpro/rest-centered.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/rest-centered.gpx-ref.mscx b/mtest/guitarpro/rest-centered.gpx-ref.mscx index 6deb93c198e00..68d8363cb7ae9 100644 --- a/mtest/guitarpro/rest-centered.gpx-ref.mscx +++ b/mtest/guitarpro/rest-centered.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/sforzato.gp4-ref.mscx b/mtest/guitarpro/sforzato.gp4-ref.mscx index 55ff9d5fa8615..0cd7646e25c96 100644 --- a/mtest/guitarpro/sforzato.gp4-ref.mscx +++ b/mtest/guitarpro/sforzato.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/shift-slide.gp4-ref.mscx b/mtest/guitarpro/shift-slide.gp4-ref.mscx index d80a457008d8b..b7286a3bd8eac 100644 --- a/mtest/guitarpro/shift-slide.gp4-ref.mscx +++ b/mtest/guitarpro/shift-slide.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/shift-slide.gp5-ref.mscx b/mtest/guitarpro/shift-slide.gp5-ref.mscx index 5ec5aa8c7355b..37ec59c668e45 100644 --- a/mtest/guitarpro/shift-slide.gp5-ref.mscx +++ b/mtest/guitarpro/shift-slide.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/shift-slide.gpx-ref.mscx b/mtest/guitarpro/shift-slide.gpx-ref.mscx index b44afd326db5d..decfb2e70ee78 100644 --- a/mtest/guitarpro/shift-slide.gpx-ref.mscx +++ b/mtest/guitarpro/shift-slide.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-in-above.gp4-ref.mscx b/mtest/guitarpro/slide-in-above.gp4-ref.mscx index 4ea22cafcc841..ead8877a79dd4 100644 --- a/mtest/guitarpro/slide-in-above.gp4-ref.mscx +++ b/mtest/guitarpro/slide-in-above.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-in-above.gp5-ref.mscx b/mtest/guitarpro/slide-in-above.gp5-ref.mscx index 3cce4a5901b7f..16b9b2d103e38 100644 --- a/mtest/guitarpro/slide-in-above.gp5-ref.mscx +++ b/mtest/guitarpro/slide-in-above.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-in-above.gpx-ref.mscx b/mtest/guitarpro/slide-in-above.gpx-ref.mscx index dfefa4f8c4526..8850285560b08 100644 --- a/mtest/guitarpro/slide-in-above.gpx-ref.mscx +++ b/mtest/guitarpro/slide-in-above.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-in-below.gp4-ref.mscx b/mtest/guitarpro/slide-in-below.gp4-ref.mscx index 454115d3b3872..175e7cfb5f286 100644 --- a/mtest/guitarpro/slide-in-below.gp4-ref.mscx +++ b/mtest/guitarpro/slide-in-below.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-in-below.gp5-ref.mscx b/mtest/guitarpro/slide-in-below.gp5-ref.mscx index 0e345841b43cf..888125beb00b8 100644 --- a/mtest/guitarpro/slide-in-below.gp5-ref.mscx +++ b/mtest/guitarpro/slide-in-below.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-in-below.gpx-ref.mscx b/mtest/guitarpro/slide-in-below.gpx-ref.mscx index ffe11e10c6493..a80f9e2246a41 100644 --- a/mtest/guitarpro/slide-in-below.gpx-ref.mscx +++ b/mtest/guitarpro/slide-in-below.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-out-down.gp4-ref.mscx b/mtest/guitarpro/slide-out-down.gp4-ref.mscx index 57566877a4301..752d4a19dd322 100644 --- a/mtest/guitarpro/slide-out-down.gp4-ref.mscx +++ b/mtest/guitarpro/slide-out-down.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-out-down.gp5-ref.mscx b/mtest/guitarpro/slide-out-down.gp5-ref.mscx index ea5acc60930e0..53627d5cde4cf 100644 --- a/mtest/guitarpro/slide-out-down.gp5-ref.mscx +++ b/mtest/guitarpro/slide-out-down.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-out-down.gpx-ref.mscx b/mtest/guitarpro/slide-out-down.gpx-ref.mscx index 526c8cc6d80e1..15df6f318e618 100644 --- a/mtest/guitarpro/slide-out-down.gpx-ref.mscx +++ b/mtest/guitarpro/slide-out-down.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-out-up.gp4-ref.mscx b/mtest/guitarpro/slide-out-up.gp4-ref.mscx index bcc377fe73c31..655b62272f8a1 100644 --- a/mtest/guitarpro/slide-out-up.gp4-ref.mscx +++ b/mtest/guitarpro/slide-out-up.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-out-up.gp5-ref.mscx b/mtest/guitarpro/slide-out-up.gp5-ref.mscx index 75ab49daf074f..b1d4c191b546b 100644 --- a/mtest/guitarpro/slide-out-up.gp5-ref.mscx +++ b/mtest/guitarpro/slide-out-up.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slide-out-up.gpx-ref.mscx b/mtest/guitarpro/slide-out-up.gpx-ref.mscx index 0be8330289c2a..9a37cdd29e81d 100644 --- a/mtest/guitarpro/slide-out-up.gpx-ref.mscx +++ b/mtest/guitarpro/slide-out-up.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx b/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx index 4ed872477f874..0eb5e6640018f 100644 --- a/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx +++ b/mtest/guitarpro/slur-notes-effect-mask.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slur.gp4-ref.mscx b/mtest/guitarpro/slur.gp4-ref.mscx index 1d38e8d6253c6..eb520ca287c64 100644 --- a/mtest/guitarpro/slur.gp4-ref.mscx +++ b/mtest/guitarpro/slur.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/slur.gpx-ref.mscx b/mtest/guitarpro/slur.gpx-ref.mscx index 0d742c34001e9..0ab17740495fe 100644 --- a/mtest/guitarpro/slur.gpx-ref.mscx +++ b/mtest/guitarpro/slur.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tap-slap-pop.gp5-ref.mscx b/mtest/guitarpro/tap-slap-pop.gp5-ref.mscx index 16deaa1e67991..e26877f83e4b7 100644 --- a/mtest/guitarpro/tap-slap-pop.gp5-ref.mscx +++ b/mtest/guitarpro/tap-slap-pop.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tap-slap-pop.gpx-ref.mscx b/mtest/guitarpro/tap-slap-pop.gpx-ref.mscx index 8caadfd8715f1..a8c0a0fd1c9db 100644 --- a/mtest/guitarpro/tap-slap-pop.gpx-ref.mscx +++ b/mtest/guitarpro/tap-slap-pop.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tempo.gp3-ref.mscx b/mtest/guitarpro/tempo.gp3-ref.mscx index 83e0c63696d7c..b86da39b553b9 100644 --- a/mtest/guitarpro/tempo.gp3-ref.mscx +++ b/mtest/guitarpro/tempo.gp3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tempo.gp4-ref.mscx b/mtest/guitarpro/tempo.gp4-ref.mscx index ee154f18028e5..9985b7c30dac4 100644 --- a/mtest/guitarpro/tempo.gp4-ref.mscx +++ b/mtest/guitarpro/tempo.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tempo.gp5-ref.mscx b/mtest/guitarpro/tempo.gp5-ref.mscx index e338dd031ca11..16450135b1ddc 100644 --- a/mtest/guitarpro/tempo.gp5-ref.mscx +++ b/mtest/guitarpro/tempo.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/testIrrTuplet.gp4-ref.mscx b/mtest/guitarpro/testIrrTuplet.gp4-ref.mscx index f8c632b33b1c2..210a332e2aa13 100644 --- a/mtest/guitarpro/testIrrTuplet.gp4-ref.mscx +++ b/mtest/guitarpro/testIrrTuplet.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/text.gpx-ref.mscx b/mtest/guitarpro/text.gpx-ref.mscx index 2f17beb618090..17ef061bece96 100644 --- a/mtest/guitarpro/text.gpx-ref.mscx +++ b/mtest/guitarpro/text.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/timer.gpx-ref.mscx b/mtest/guitarpro/timer.gpx-ref.mscx index fc1d25870cd07..0d50e57662010 100644 --- a/mtest/guitarpro/timer.gpx-ref.mscx +++ b/mtest/guitarpro/timer.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tremolo-bar.gpx-ref.mscx b/mtest/guitarpro/tremolo-bar.gpx-ref.mscx index 75c0968584eee..95b331b7904c9 100644 --- a/mtest/guitarpro/tremolo-bar.gpx-ref.mscx +++ b/mtest/guitarpro/tremolo-bar.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tremolos.gp5-ref.mscx b/mtest/guitarpro/tremolos.gp5-ref.mscx index 4c912dd975458..4940f1353346b 100644 --- a/mtest/guitarpro/tremolos.gp5-ref.mscx +++ b/mtest/guitarpro/tremolos.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tremolos.gpx-ref.mscx b/mtest/guitarpro/tremolos.gpx-ref.mscx index 16e9a760065bf..4a0d5849bf63f 100644 --- a/mtest/guitarpro/tremolos.gpx-ref.mscx +++ b/mtest/guitarpro/tremolos.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/trill.gp4-ref.mscx b/mtest/guitarpro/trill.gp4-ref.mscx index 17e1ff16c541d..503f41f196d03 100644 --- a/mtest/guitarpro/trill.gp4-ref.mscx +++ b/mtest/guitarpro/trill.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/trill.gpx-ref.mscx b/mtest/guitarpro/trill.gpx-ref.mscx index 87a383371ad58..52162d1c19b07 100644 --- a/mtest/guitarpro/trill.gpx-ref.mscx +++ b/mtest/guitarpro/trill.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/tuplet-with-slur.gp4-ref.mscx b/mtest/guitarpro/tuplet-with-slur.gp4-ref.mscx index f8c632b33b1c2..210a332e2aa13 100644 --- a/mtest/guitarpro/tuplet-with-slur.gp4-ref.mscx +++ b/mtest/guitarpro/tuplet-with-slur.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/turn.gpx-ref.mscx b/mtest/guitarpro/turn.gpx-ref.mscx index 56c69c37804a3..d210374200b70 100644 --- a/mtest/guitarpro/turn.gpx-ref.mscx +++ b/mtest/guitarpro/turn.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/vibrato.gpx-ref.mscx b/mtest/guitarpro/vibrato.gpx-ref.mscx index ce9a5f696640d..28ed593d3d9ee 100644 --- a/mtest/guitarpro/vibrato.gpx-ref.mscx +++ b/mtest/guitarpro/vibrato.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/volta.gp3-ref.mscx b/mtest/guitarpro/volta.gp3-ref.mscx index 63f0f5c2971a6..c79ce8c1ec411 100644 --- a/mtest/guitarpro/volta.gp3-ref.mscx +++ b/mtest/guitarpro/volta.gp3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/volta.gp4-ref.mscx b/mtest/guitarpro/volta.gp4-ref.mscx index 9608830d9acec..4105b0c36559d 100644 --- a/mtest/guitarpro/volta.gp4-ref.mscx +++ b/mtest/guitarpro/volta.gp4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/volta.gp5-ref.mscx b/mtest/guitarpro/volta.gp5-ref.mscx index 7392aef7874b4..691f3d273eafb 100644 --- a/mtest/guitarpro/volta.gp5-ref.mscx +++ b/mtest/guitarpro/volta.gp5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/volta.gpx-ref.mscx b/mtest/guitarpro/volta.gpx-ref.mscx index a358ebba7f5b0..aab78579febe4 100644 --- a/mtest/guitarpro/volta.gpx-ref.mscx +++ b/mtest/guitarpro/volta.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/volume-swell.gpx-ref.mscx b/mtest/guitarpro/volume-swell.gpx-ref.mscx index 1e6d3ebcd07ad..7a41cbf1918f0 100644 --- a/mtest/guitarpro/volume-swell.gpx-ref.mscx +++ b/mtest/guitarpro/volume-swell.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/guitarpro/wah.gpx-ref.mscx b/mtest/guitarpro/wah.gpx-ref.mscx index 16a54c9807380..28f4bdb6aca98 100644 --- a/mtest/guitarpro/wah.gpx-ref.mscx +++ b/mtest/guitarpro/wah.gpx-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/chord_1_tick_long.mscx b/mtest/importmidi/chord_1_tick_long.mscx index 412e463e1f76a..990b336920f8b 100644 --- a/mtest/importmidi/chord_1_tick_long.mscx +++ b/mtest/importmidi/chord_1_tick_long.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/chord_big_error.mscx b/mtest/importmidi/chord_big_error.mscx index 224fbbcd08528..2b42272424847 100644 --- a/mtest/importmidi/chord_big_error.mscx +++ b/mtest/importmidi/chord_big_error.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/chord_collect.mscx b/mtest/importmidi/chord_collect.mscx index 920ffbdf14578..b4809698300e5 100644 --- a/mtest/importmidi/chord_collect.mscx +++ b/mtest/importmidi/chord_collect.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/chord_legato.mscx b/mtest/importmidi/chord_legato.mscx index be3ebf8817608..e81cfe5701e95 100644 --- a/mtest/importmidi/chord_legato.mscx +++ b/mtest/importmidi/chord_legato.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/chord_small_error.mscx b/mtest/importmidi/chord_small_error.mscx index 224fbbcd08528..2b42272424847 100644 --- a/mtest/importmidi/chord_small_error.mscx +++ b/mtest/importmidi/chord_small_error.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/clef_melody.mscx b/mtest/importmidi/clef_melody.mscx index f1dadb3ec1a71..3b390a4c2e71d 100644 --- a/mtest/importmidi/clef_melody.mscx +++ b/mtest/importmidi/clef_melody.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/clef_prev.mscx b/mtest/importmidi/clef_prev.mscx index e3405fa359201..2bdcfa9ac31d5 100644 --- a/mtest/importmidi/clef_prev.mscx +++ b/mtest/importmidi/clef_prev.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/clef_tied.mscx b/mtest/importmidi/clef_tied.mscx index b64a3c0323e87..8af04d63d4142 100644 --- a/mtest/importmidi/clef_tied.mscx +++ b/mtest/importmidi/clef_tied.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/division.mscx b/mtest/importmidi/division.mscx index 780ad2adf6071..9acdd3131ed46 100644 --- a/mtest/importmidi/division.mscx +++ b/mtest/importmidi/division.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/human_4-4.mscx b/mtest/importmidi/human_4-4.mscx index 722fc92cc01c2..2309b61a30c92 100644 --- a/mtest/importmidi/human_4-4.mscx +++ b/mtest/importmidi/human_4-4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/human_tempo.mscx b/mtest/importmidi/human_tempo.mscx index 3ee67cabf8b1e..0e25672fdafee 100644 --- a/mtest/importmidi/human_tempo.mscx +++ b/mtest/importmidi/human_tempo.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/instrument_3staff_organ.mscx b/mtest/importmidi/instrument_3staff_organ.mscx index dcdb2ee56f02a..c07d5884b9a62 100644 --- a/mtest/importmidi/instrument_3staff_organ.mscx +++ b/mtest/importmidi/instrument_3staff_organ.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/instrument_channels.mscx b/mtest/importmidi/instrument_channels.mscx index ddff7aa861830..091b0cab5a89f 100644 --- a/mtest/importmidi/instrument_channels.mscx +++ b/mtest/importmidi/instrument_channels.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/instrument_clef.mscx b/mtest/importmidi/instrument_clef.mscx index 1a397f7a7c814..1af6596536bde 100644 --- a/mtest/importmidi/instrument_clef.mscx +++ b/mtest/importmidi/instrument_clef.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/instrument_grand.mscx b/mtest/importmidi/instrument_grand.mscx index 3e74874b5e606..d7e29df42a5ba 100644 --- a/mtest/importmidi/instrument_grand.mscx +++ b/mtest/importmidi/instrument_grand.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/instrument_grand2.mscx b/mtest/importmidi/instrument_grand2.mscx index 55569221b43d4..bbc3add082066 100644 --- a/mtest/importmidi/instrument_grand2.mscx +++ b/mtest/importmidi/instrument_grand2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/lyrics_time_0.mscx b/mtest/importmidi/lyrics_time_0.mscx index dbc173bffe904..f3d831c2360f3 100644 --- a/mtest/importmidi/lyrics_time_0.mscx +++ b/mtest/importmidi/lyrics_time_0.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/lyrics_voice_1.mscx b/mtest/importmidi/lyrics_voice_1.mscx index 11db1a9d0ca77..fb49797ea4e2f 100644 --- a/mtest/importmidi/lyrics_voice_1.mscx +++ b/mtest/importmidi/lyrics_voice_1.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/m1.mscx b/mtest/importmidi/m1.mscx index 44237f3239a4e..22d07917f5a71 100644 --- a/mtest/importmidi/m1.mscx +++ b/mtest/importmidi/m1.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/m2.mscx b/mtest/importmidi/m2.mscx index 61085e5a9dc7a..78723f2609394 100644 --- a/mtest/importmidi/m2.mscx +++ b/mtest/importmidi/m2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/m3.mscx b/mtest/importmidi/m3.mscx index 913bb08c54b6a..40d10e408ff07 100644 --- a/mtest/importmidi/m3.mscx +++ b/mtest/importmidi/m3.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/m4.mscx b/mtest/importmidi/m4.mscx index d5c54a516bebd..98148cc60eb92 100644 --- a/mtest/importmidi/m4.mscx +++ b/mtest/importmidi/m4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/m5.mscx b/mtest/importmidi/m5.mscx index 44237f3239a4e..22d07917f5a71 100644 --- a/mtest/importmidi/m5.mscx +++ b/mtest/importmidi/m5.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_12-8.mscx b/mtest/importmidi/meter_12-8.mscx index a5bb65a45325b..cffe90ba917b8 100644 --- a/mtest/importmidi/meter_12-8.mscx +++ b/mtest/importmidi/meter_12-8.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_15-8.mscx b/mtest/importmidi/meter_15-8.mscx index a9d9d365dbef1..76e9f89cbfef7 100644 --- a/mtest/importmidi/meter_15-8.mscx +++ b/mtest/importmidi/meter_15-8.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_4-4.mscx b/mtest/importmidi/meter_4-4.mscx index f2b87d3683330..a523b56b24083 100644 --- a/mtest/importmidi/meter_4-4.mscx +++ b/mtest/importmidi/meter_4-4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_9-8.mscx b/mtest/importmidi/meter_9-8.mscx index d233c1fc1231a..cfabcb98666a8 100644 --- a/mtest/importmidi/meter_9-8.mscx +++ b/mtest/importmidi/meter_9-8.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_central_long_note.mscx b/mtest/importmidi/meter_central_long_note.mscx index 98bb8aa94474e..c2e124a3680a5 100644 --- a/mtest/importmidi/meter_central_long_note.mscx +++ b/mtest/importmidi/meter_central_long_note.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_central_long_rest.mscx b/mtest/importmidi/meter_central_long_rest.mscx index 711a79d0b6ba4..d2372ed5fe6f3 100644 --- a/mtest/importmidi/meter_central_long_rest.mscx +++ b/mtest/importmidi/meter_central_long_rest.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_chord_example.mscx b/mtest/importmidi/meter_chord_example.mscx index ddd5887a63ae4..ea249c18f4fc0 100644 --- a/mtest/importmidi/meter_chord_example.mscx +++ b/mtest/importmidi/meter_chord_example.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_dot_tie.mscx b/mtest/importmidi/meter_dot_tie.mscx index c384500f2931f..ab17bdcd0c360 100644 --- a/mtest/importmidi/meter_dot_tie.mscx +++ b/mtest/importmidi/meter_dot_tie.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_dots_example1.mscx b/mtest/importmidi/meter_dots_example1.mscx index 6bc021207b47d..54b46e9a056f7 100644 --- a/mtest/importmidi/meter_dots_example1.mscx +++ b/mtest/importmidi/meter_dots_example1.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_dots_example2.mscx b/mtest/importmidi/meter_dots_example2.mscx index 8d0fed6200c7b..0bb7257e1140c 100644 --- a/mtest/importmidi/meter_dots_example2.mscx +++ b/mtest/importmidi/meter_dots_example2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_dots_example3.mscx b/mtest/importmidi/meter_dots_example3.mscx index 926c08a3c0c03..d7fdb752535f7 100644 --- a/mtest/importmidi/meter_dots_example3.mscx +++ b/mtest/importmidi/meter_dots_example3.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_first_2_8th_rests_compound.mscx b/mtest/importmidi/meter_first_2_8th_rests_compound.mscx index 7a314cf482109..13e8529a9aaf3 100644 --- a/mtest/importmidi/meter_first_2_8th_rests_compound.mscx +++ b/mtest/importmidi/meter_first_2_8th_rests_compound.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_half_rest_3-4.mscx b/mtest/importmidi/meter_half_rest_3-4.mscx index 9a8837faa4fec..a38833214b4b2 100644 --- a/mtest/importmidi/meter_half_rest_3-4.mscx +++ b/mtest/importmidi/meter_half_rest_3-4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_last_quarter_rest_compound.mscx b/mtest/importmidi/meter_last_quarter_rest_compound.mscx index a371d3dc4cf9a..9c83a921f526c 100644 --- a/mtest/importmidi/meter_last_quarter_rest_compound.mscx +++ b/mtest/importmidi/meter_last_quarter_rest_compound.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_rests.mscx b/mtest/importmidi/meter_rests.mscx index 6b43de52e57f0..e76f73f0b1480 100644 --- a/mtest/importmidi/meter_rests.mscx +++ b/mtest/importmidi/meter_rests.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/meter_two_beats_over.mscx b/mtest/importmidi/meter_two_beats_over.mscx index fa6e1bafe4e0f..1e23ad5b683cd 100644 --- a/mtest/importmidi/meter_two_beats_over.mscx +++ b/mtest/importmidi/meter_two_beats_over.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/min_duration.mscx b/mtest/importmidi/min_duration.mscx index 1823cdb7d6fff..7af68328c1893 100644 --- a/mtest/importmidi/min_duration.mscx +++ b/mtest/importmidi/min_duration.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_drums.mscx b/mtest/importmidi/perc_drums.mscx index 6d1403020a94c..05f01279cacd7 100644 --- a/mtest/importmidi/perc_drums.mscx +++ b/mtest/importmidi/perc_drums.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_no_grand_staff.mscx b/mtest/importmidi/perc_no_grand_staff.mscx index 9142972c00765..3acbc96568ed5 100644 --- a/mtest/importmidi/perc_no_grand_staff.mscx +++ b/mtest/importmidi/perc_no_grand_staff.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_remove_ties.mscx b/mtest/importmidi/perc_remove_ties.mscx index da150a994c19e..6641a152a5d37 100644 --- a/mtest/importmidi/perc_remove_ties.mscx +++ b/mtest/importmidi/perc_remove_ties.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_respect_beat.mscx b/mtest/importmidi/perc_respect_beat.mscx index c616e8cf3b302..9e068a87d9c93 100755 --- a/mtest/importmidi/perc_respect_beat.mscx +++ b/mtest/importmidi/perc_respect_beat.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_short_notes.mscx b/mtest/importmidi/perc_short_notes.mscx index 71b64ad8e1f03..34e015c727213 100644 --- a/mtest/importmidi/perc_short_notes.mscx +++ b/mtest/importmidi/perc_short_notes.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_triplet.mscx b/mtest/importmidi/perc_triplet.mscx index 69962ea0c1927..04d1b2ec9c1b4 100755 --- a/mtest/importmidi/perc_triplet.mscx +++ b/mtest/importmidi/perc_triplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_tuplet_simplify.mscx b/mtest/importmidi/perc_tuplet_simplify.mscx index 71d1f382145db..5d20c36b846d3 100644 --- a/mtest/importmidi/perc_tuplet_simplify.mscx +++ b/mtest/importmidi/perc_tuplet_simplify.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_tuplet_simplify2.mscx b/mtest/importmidi/perc_tuplet_simplify2.mscx index 7481410bad536..af40fd024982d 100644 --- a/mtest/importmidi/perc_tuplet_simplify2.mscx +++ b/mtest/importmidi/perc_tuplet_simplify2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/perc_tuplet_voice.mscx b/mtest/importmidi/perc_tuplet_voice.mscx index 0abada73fa50b..8c5b577970923 100644 --- a/mtest/importmidi/perc_tuplet_voice.mscx +++ b/mtest/importmidi/perc_tuplet_voice.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/pickup.mscx b/mtest/importmidi/pickup.mscx index 28abe10b95cee..bd127d167a53d 100644 --- a/mtest/importmidi/pickup.mscx +++ b/mtest/importmidi/pickup.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/pickup_long.mscx b/mtest/importmidi/pickup_long.mscx index 829b7f83f067d..4910d51a2e9c4 100644 --- a/mtest/importmidi/pickup_long.mscx +++ b/mtest/importmidi/pickup_long.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/pickup_turn_off.mscx b/mtest/importmidi/pickup_turn_off.mscx index 7fb926b7f3235..36a2cfd699fd5 100644 --- a/mtest/importmidi/pickup_turn_off.mscx +++ b/mtest/importmidi/pickup_turn_off.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/quant_dotted_4th.mscx b/mtest/importmidi/quant_dotted_4th.mscx index 3976ab608a38d..79f14d04e0e2a 100644 --- a/mtest/importmidi/quant_dotted_4th.mscx +++ b/mtest/importmidi/quant_dotted_4th.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_16th_staccato.mscx b/mtest/importmidi/simplify_16th_staccato.mscx index 6cee0304231e8..3ee5fe92c9079 100644 --- a/mtest/importmidi/simplify_16th_staccato.mscx +++ b/mtest/importmidi/simplify_16th_staccato.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_32nd_staccato.mscx b/mtest/importmidi/simplify_32nd_staccato.mscx index 0465c52f5eea0..5554d93f3cbd5 100644 --- a/mtest/importmidi/simplify_32nd_staccato.mscx +++ b/mtest/importmidi/simplify_32nd_staccato.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_4th_dotted_tied.mscx b/mtest/importmidi/simplify_4th_dotted_tied.mscx index 8071e85b8c8b3..899cb116fbfce 100644 --- a/mtest/importmidi/simplify_4th_dotted_tied.mscx +++ b/mtest/importmidi/simplify_4th_dotted_tied.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_8th_dont.mscx b/mtest/importmidi/simplify_8th_dont.mscx index e5e1245a64d51..7ef5f8fb1531b 100644 --- a/mtest/importmidi/simplify_8th_dont.mscx +++ b/mtest/importmidi/simplify_8th_dont.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_8th_dotted_no_staccato.mscx b/mtest/importmidi/simplify_8th_dotted_no_staccato.mscx index baadefd524565..59a6c975dc436 100644 --- a/mtest/importmidi/simplify_8th_dotted_no_staccato.mscx +++ b/mtest/importmidi/simplify_8th_dotted_no_staccato.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_dotted_3-4.mscx b/mtest/importmidi/simplify_dotted_3-4.mscx index 35377615543be..f00e23b5f8bf3 100644 --- a/mtest/importmidi/simplify_dotted_3-4.mscx +++ b/mtest/importmidi/simplify_dotted_3-4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_staccato_9-8.mscx b/mtest/importmidi/simplify_staccato_9-8.mscx index d6d0e19416fee..32eaa28423103 100644 --- a/mtest/importmidi/simplify_staccato_9-8.mscx +++ b/mtest/importmidi/simplify_staccato_9-8.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/simplify_triplet_staccato.mscx b/mtest/importmidi/simplify_triplet_staccato.mscx index 2220ff8e2346f..d05efccbb968d 100644 --- a/mtest/importmidi/simplify_triplet_staccato.mscx +++ b/mtest/importmidi/simplify_triplet_staccato.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/split_2_melodies.mscx b/mtest/importmidi/split_2_melodies.mscx index 4384ae27c0f12..4c4507b34ae09 100644 --- a/mtest/importmidi/split_2_melodies.mscx +++ b/mtest/importmidi/split_2_melodies.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/split_acid.mscx b/mtest/importmidi/split_acid.mscx index 6ae7babaa5753..b6fd9520a9891 100644 --- a/mtest/importmidi/split_acid.mscx +++ b/mtest/importmidi/split_acid.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/split_nontuplet.mscx b/mtest/importmidi/split_nontuplet.mscx index d549f840024f0..27979edcf4850 100644 --- a/mtest/importmidi/split_nontuplet.mscx +++ b/mtest/importmidi/split_nontuplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/split_octave.mscx b/mtest/importmidi/split_octave.mscx index 6317591718652..353ce0f6de04d 100644 --- a/mtest/importmidi/split_octave.mscx +++ b/mtest/importmidi/split_octave.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/split_tuplet.mscx b/mtest/importmidi/split_tuplet.mscx index 6466db909dd3a..118e34116eef3 100644 --- a/mtest/importmidi/split_tuplet.mscx +++ b/mtest/importmidi/split_tuplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/swing_clef.mscx b/mtest/importmidi/swing_clef.mscx index dbbcb386bd3b5..f998deab82901 100644 --- a/mtest/importmidi/swing_clef.mscx +++ b/mtest/importmidi/swing_clef.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/swing_shuffle.mscx b/mtest/importmidi/swing_shuffle.mscx index c5da0358640e3..d8be54af36240 100644 --- a/mtest/importmidi/swing_shuffle.mscx +++ b/mtest/importmidi/swing_shuffle.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/swing_triplets.mscx b/mtest/importmidi/swing_triplets.mscx index f91cfe2ce538a..ba11bc562ac57 100644 --- a/mtest/importmidi/swing_triplets.mscx +++ b/mtest/importmidi/swing_triplets.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/timesig_changes.mscx b/mtest/importmidi/timesig_changes.mscx index fcb749cbd0010..30c9f4877314f 100644 --- a/mtest/importmidi/timesig_changes.mscx +++ b/mtest/importmidi/timesig_changes.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_16th_8th.mscx b/mtest/importmidi/tuplet_16th_8th.mscx index 4cf08d6636bd7..3c45b4d7793df 100644 --- a/mtest/importmidi/tuplet_16th_8th.mscx +++ b/mtest/importmidi/tuplet_16th_8th.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_2_voices_3_5_tuplets.mscx b/mtest/importmidi/tuplet_2_voices_3_5_tuplets.mscx index 365a3d6fb05e3..ec224f66ca8f8 100644 --- a/mtest/importmidi/tuplet_2_voices_3_5_tuplets.mscx +++ b/mtest/importmidi/tuplet_2_voices_3_5_tuplets.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_2_voices_tuplet_non.mscx b/mtest/importmidi/tuplet_2_voices_tuplet_non.mscx index 7a79bd92f0344..07cd62b813515 100644 --- a/mtest/importmidi/tuplet_2_voices_tuplet_non.mscx +++ b/mtest/importmidi/tuplet_2_voices_tuplet_non.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_3-4.mscx b/mtest/importmidi/tuplet_3-4.mscx index 0f7bd3975b2d9..96ce701d38bef 100644 --- a/mtest/importmidi/tuplet_3-4.mscx +++ b/mtest/importmidi/tuplet_3-4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_3_5_7_tuplets.mscx b/mtest/importmidi/tuplet_3_5_7_tuplets.mscx index 8c60f843ef863..daa5edb777768 100644 --- a/mtest/importmidi/tuplet_3_5_7_tuplets.mscx +++ b/mtest/importmidi/tuplet_3_5_7_tuplets.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_5_5_tuplets_rests.mscx b/mtest/importmidi/tuplet_5_5_tuplets_rests.mscx index 81ca2debb7060..b30f0913e6afe 100644 --- a/mtest/importmidi/tuplet_5_5_tuplets_rests.mscx +++ b/mtest/importmidi/tuplet_5_5_tuplets_rests.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_7_staccato.mscx b/mtest/importmidi/tuplet_7_staccato.mscx index bc60d20120dea..78dc704c71550 100644 --- a/mtest/importmidi/tuplet_7_staccato.mscx +++ b/mtest/importmidi/tuplet_7_staccato.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_duplet.mscx b/mtest/importmidi/tuplet_duplet.mscx index d35d6e87abd20..8dae1fbe7d443 100644 --- a/mtest/importmidi/tuplet_duplet.mscx +++ b/mtest/importmidi/tuplet_duplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_mars.mscx b/mtest/importmidi/tuplet_mars.mscx index 565a30b5e5c5f..02faa554668cd 100644 --- a/mtest/importmidi/tuplet_mars.mscx +++ b/mtest/importmidi/tuplet_mars.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_nonuplet_3-4.mscx b/mtest/importmidi/tuplet_nonuplet_3-4.mscx index c7a982bf30c3e..f8f39b3d46f35 100644 --- a/mtest/importmidi/tuplet_nonuplet_3-4.mscx +++ b/mtest/importmidi/tuplet_nonuplet_3-4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_nonuplet_4-4.mscx b/mtest/importmidi/tuplet_nonuplet_4-4.mscx index 8c8f2cbffad62..cddf6cab5ff20 100644 --- a/mtest/importmidi/tuplet_nonuplet_4-4.mscx +++ b/mtest/importmidi/tuplet_nonuplet_4-4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_off_time_other_bar.mscx b/mtest/importmidi/tuplet_off_time_other_bar.mscx index a9df960e966b2..54cd7a06660bd 100644 --- a/mtest/importmidi/tuplet_off_time_other_bar.mscx +++ b/mtest/importmidi/tuplet_off_time_other_bar.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_off_time_other_bar2.mscx b/mtest/importmidi/tuplet_off_time_other_bar2.mscx index 9200859440038..a5319b1173129 100644 --- a/mtest/importmidi/tuplet_off_time_other_bar2.mscx +++ b/mtest/importmidi/tuplet_off_time_other_bar2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_quadruplet.mscx b/mtest/importmidi/tuplet_quadruplet.mscx index 8edd7aa06b0ca..c04fe41dc01e7 100644 --- a/mtest/importmidi/tuplet_quadruplet.mscx +++ b/mtest/importmidi/tuplet_quadruplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_septuplet.mscx b/mtest/importmidi/tuplet_septuplet.mscx index 9a1b35bb6e163..b6e2924f23a2c 100644 --- a/mtest/importmidi/tuplet_septuplet.mscx +++ b/mtest/importmidi/tuplet_septuplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_tied_3_5_tuplets.mscx b/mtest/importmidi/tuplet_tied_3_5_tuplets.mscx index f6457eb340c3f..3a70fe6c718eb 100644 --- a/mtest/importmidi/tuplet_tied_3_5_tuplets.mscx +++ b/mtest/importmidi/tuplet_tied_3_5_tuplets.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_tied_3_5_tuplets2.mscx b/mtest/importmidi/tuplet_tied_3_5_tuplets2.mscx index 6a3483250edf4..3d3f1217c5a6d 100644 --- a/mtest/importmidi/tuplet_tied_3_5_tuplets2.mscx +++ b/mtest/importmidi/tuplet_tied_3_5_tuplets2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_triplet.mscx b/mtest/importmidi/tuplet_triplet.mscx index d151f0a66e7b2..c91a1cdbf0e40 100644 --- a/mtest/importmidi/tuplet_triplet.mscx +++ b/mtest/importmidi/tuplet_triplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_triplet_first_tied.mscx b/mtest/importmidi/tuplet_triplet_first_tied.mscx index a28fc3c262b96..84b75df58ed0f 100644 --- a/mtest/importmidi/tuplet_triplet_first_tied.mscx +++ b/mtest/importmidi/tuplet_triplet_first_tied.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_triplet_first_tied2.mscx b/mtest/importmidi/tuplet_triplet_first_tied2.mscx index 9b2bc1dbc47ce..47bb72ecf283f 100644 --- a/mtest/importmidi/tuplet_triplet_first_tied2.mscx +++ b/mtest/importmidi/tuplet_triplet_first_tied2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_triplet_last_tied.mscx b/mtest/importmidi/tuplet_triplet_last_tied.mscx index fa4e75835225c..3a64a285ce98b 100644 --- a/mtest/importmidi/tuplet_triplet_last_tied.mscx +++ b/mtest/importmidi/tuplet_triplet_last_tied.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/tuplet_triplets_mixed.mscx b/mtest/importmidi/tuplet_triplets_mixed.mscx index 6d99dde707576..e0a644ac505f5 100644 --- a/mtest/importmidi/tuplet_triplets_mixed.mscx +++ b/mtest/importmidi/tuplet_triplets_mixed.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/voice_acid.mscx b/mtest/importmidi/voice_acid.mscx index 4919d38d61ab6..a8892e414d913 100644 --- a/mtest/importmidi/voice_acid.mscx +++ b/mtest/importmidi/voice_acid.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/voice_central.mscx b/mtest/importmidi/voice_central.mscx index 5470a60f06c1c..e6c732661d669 100644 --- a/mtest/importmidi/voice_central.mscx +++ b/mtest/importmidi/voice_central.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/voice_intersect.mscx b/mtest/importmidi/voice_intersect.mscx index 211913dc40409..8fb9736f8d24d 100644 --- a/mtest/importmidi/voice_intersect.mscx +++ b/mtest/importmidi/voice_intersect.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/importmidi/voice_tuplet.mscx b/mtest/importmidi/voice_tuplet.mscx index e09b1775de638..6ae3e7ef6c5c0 100644 --- a/mtest/importmidi/voice_tuplet.mscx +++ b/mtest/importmidi/voice_tuplet.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album01-01.mscx b/mtest/libmscore/album/album01-01.mscx index b93a1f9ec222d..8343d82fc04c4 100644 --- a/mtest/libmscore/album/album01-01.mscx +++ b/mtest/libmscore/album/album01-01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album01-02.mscx b/mtest/libmscore/album/album01-02.mscx index 937f51656187f..ae67e1ea810fc 100644 --- a/mtest/libmscore/album/album01-02.mscx +++ b/mtest/libmscore/album/album01-02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album01-ref.mscx b/mtest/libmscore/album/album01-ref.mscx index 3cdac5dc773e5..61bc345bb5ea4 100644 --- a/mtest/libmscore/album/album01-ref.mscx +++ b/mtest/libmscore/album/album01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-joined-addPageBreak-ref.mscx b/mtest/libmscore/album/album_105716-joined-addPageBreak-ref.mscx index 288e5b633c78c..045577dbfc91d 100644 --- a/mtest/libmscore/album/album_105716-joined-addPageBreak-ref.mscx +++ b/mtest/libmscore/album/album_105716-joined-addPageBreak-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-joined-addSectionBreak-addPageBreak-ref.mscx b/mtest/libmscore/album/album_105716-joined-addSectionBreak-addPageBreak-ref.mscx index af8faea15df01..1ebdcbc68d35f 100644 --- a/mtest/libmscore/album/album_105716-joined-addSectionBreak-addPageBreak-ref.mscx +++ b/mtest/libmscore/album/album_105716-joined-addSectionBreak-addPageBreak-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-joined-addSectionBreak-ref.mscx b/mtest/libmscore/album/album_105716-joined-addSectionBreak-ref.mscx index 06b2b81066814..06b73b4dd3b5c 100644 --- a/mtest/libmscore/album/album_105716-joined-addSectionBreak-ref.mscx +++ b/mtest/libmscore/album/album_105716-joined-addSectionBreak-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-joined-noaddBreak-ref.mscx b/mtest/libmscore/album/album_105716-joined-noaddBreak-ref.mscx index 883727550ade9..53a64d01db8f7 100644 --- a/mtest/libmscore/album/album_105716-joined-noaddBreak-ref.mscx +++ b/mtest/libmscore/album/album_105716-joined-noaddBreak-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-measure-linebreak-sectionbreak.mscx b/mtest/libmscore/album/album_105716-measure-linebreak-sectionbreak.mscx index 66f5ec38f09bc..384999bfb1a01 100644 --- a/mtest/libmscore/album/album_105716-measure-linebreak-sectionbreak.mscx +++ b/mtest/libmscore/album/album_105716-measure-linebreak-sectionbreak.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-measure-linebreak.mscx b/mtest/libmscore/album/album_105716-measure-linebreak.mscx index fd088cc6832fe..52e87018d40bf 100644 --- a/mtest/libmscore/album/album_105716-measure-linebreak.mscx +++ b/mtest/libmscore/album/album_105716-measure-linebreak.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-measure-nobreak.mscx b/mtest/libmscore/album/album_105716-measure-nobreak.mscx index ed17a1f552d02..b602edaf2fd33 100644 --- a/mtest/libmscore/album/album_105716-measure-nobreak.mscx +++ b/mtest/libmscore/album/album_105716-measure-nobreak.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-measure-pagebreak-sectionbreak.mscx b/mtest/libmscore/album/album_105716-measure-pagebreak-sectionbreak.mscx index 5410358891bed..c657fb75c5a55 100644 --- a/mtest/libmscore/album/album_105716-measure-pagebreak-sectionbreak.mscx +++ b/mtest/libmscore/album/album_105716-measure-pagebreak-sectionbreak.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_105716-measure-pagebreak.mscx b/mtest/libmscore/album/album_105716-measure-pagebreak.mscx index e7a6e67f7be1c..72420ed7e60a2 100644 --- a/mtest/libmscore/album/album_105716-measure-pagebreak.mscx +++ b/mtest/libmscore/album/album_105716-measure-pagebreak.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_76101-01.mscx b/mtest/libmscore/album/album_76101-01.mscx index 243c25216fd42..89334c5c88ae4 100644 --- a/mtest/libmscore/album/album_76101-01.mscx +++ b/mtest/libmscore/album/album_76101-01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_76101-02.mscx b/mtest/libmscore/album/album_76101-02.mscx index a912c62a4da89..a0abfd6376d25 100644 --- a/mtest/libmscore/album/album_76101-02.mscx +++ b/mtest/libmscore/album/album_76101-02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_76101-ref.mscx b/mtest/libmscore/album/album_76101-ref.mscx index 0620ad05b5d6d..c1308dc1d459b 100644 --- a/mtest/libmscore/album/album_76101-ref.mscx +++ b/mtest/libmscore/album/album_76101-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_78521-empty.mscx b/mtest/libmscore/album/album_78521-empty.mscx index e232866a981cc..426c646f7b6a7 100644 --- a/mtest/libmscore/album/album_78521-empty.mscx +++ b/mtest/libmscore/album/album_78521-empty.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_78521-vbox-vbox-empty-ref.mscx b/mtest/libmscore/album/album_78521-vbox-vbox-empty-ref.mscx index 0eac40ab81ef4..ecba619041c9d 100644 --- a/mtest/libmscore/album/album_78521-vbox-vbox-empty-ref.mscx +++ b/mtest/libmscore/album/album_78521-vbox-vbox-empty-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/album/album_78521-vbox.mscx b/mtest/libmscore/album/album_78521-vbox.mscx index e2f072b9ac8b9..af5272a8208d3 100644 --- a/mtest/libmscore/album/album_78521-vbox.mscx +++ b/mtest/libmscore/album/album_78521-vbox.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/barline/barline01.mscx b/mtest/libmscore/barline/barline01.mscx index 503967ef20485..7cdc012888862 100644 --- a/mtest/libmscore/barline/barline01.mscx +++ b/mtest/libmscore/barline/barline01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/barline/barline02.mscx b/mtest/libmscore/barline/barline02.mscx index 9ca1164d537fe..2ad744cd2b97b 100644 --- a/mtest/libmscore/barline/barline02.mscx +++ b/mtest/libmscore/barline/barline02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/barline/barline03.mscx b/mtest/libmscore/barline/barline03.mscx index fa1daf7b68134..1c23763d8dc1f 100644 --- a/mtest/libmscore/barline/barline03.mscx +++ b/mtest/libmscore/barline/barline03.mscx @@ -1,5 +1,5 @@ - + 2.1.0 3543170 diff --git a/mtest/libmscore/barline/barline04.mscx b/mtest/libmscore/barline/barline04.mscx index 2e49bf5e2a013..a87a8b2aa9151 100644 --- a/mtest/libmscore/barline/barline04.mscx +++ b/mtest/libmscore/barline/barline04.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/barline/barline05.mscx b/mtest/libmscore/barline/barline05.mscx index 904f7b8ed4bec..e89f423a16394 100644 --- a/mtest/libmscore/barline/barline05.mscx +++ b/mtest/libmscore/barline/barline05.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/barline/barline06.mscx b/mtest/libmscore/barline/barline06.mscx index 09fb12b50ac58..cb52460fa0138 100755 --- a/mtest/libmscore/barline/barline06.mscx +++ b/mtest/libmscore/barline/barline06.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-2.mscx b/mtest/libmscore/beam/Beam-2.mscx index 2d90b4a727fb3..3f27ff414ffd2 100644 --- a/mtest/libmscore/beam/Beam-2.mscx +++ b/mtest/libmscore/beam/Beam-2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-23.mscx b/mtest/libmscore/beam/Beam-23.mscx index 7ef10c1029175..dcff116888fae 100644 --- a/mtest/libmscore/beam/Beam-23.mscx +++ b/mtest/libmscore/beam/Beam-23.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-A.mscx b/mtest/libmscore/beam/Beam-A.mscx index fb5f39d41910a..1e695e97ec67b 100644 --- a/mtest/libmscore/beam/Beam-A.mscx +++ b/mtest/libmscore/beam/Beam-A.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-B.mscx b/mtest/libmscore/beam/Beam-B.mscx index c2d26b1f7f664..222a6eebd6d5a 100644 --- a/mtest/libmscore/beam/Beam-B.mscx +++ b/mtest/libmscore/beam/Beam-B.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-C.mscx b/mtest/libmscore/beam/Beam-C.mscx index d70a67272ca6f..d7799d500f0cb 100644 --- a/mtest/libmscore/beam/Beam-C.mscx +++ b/mtest/libmscore/beam/Beam-C.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-D.mscx b/mtest/libmscore/beam/Beam-D.mscx index 0e4b0e7d63c79..609d6f2631337 100644 --- a/mtest/libmscore/beam/Beam-D.mscx +++ b/mtest/libmscore/beam/Beam-D.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-E.mscx b/mtest/libmscore/beam/Beam-E.mscx index adb5ca58b35ff..4473cd70a181f 100644 --- a/mtest/libmscore/beam/Beam-E.mscx +++ b/mtest/libmscore/beam/Beam-E.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-F.mscx b/mtest/libmscore/beam/Beam-F.mscx index b499dee0b0ea8..819a850df6aec 100644 --- a/mtest/libmscore/beam/Beam-F.mscx +++ b/mtest/libmscore/beam/Beam-F.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-G.mscx b/mtest/libmscore/beam/Beam-G.mscx index dad37373cbc45..4e683dfa8c141 100644 --- a/mtest/libmscore/beam/Beam-G.mscx +++ b/mtest/libmscore/beam/Beam-G.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-S0.mscx b/mtest/libmscore/beam/Beam-S0.mscx index 85753334b203a..4830b1164e9ab 100644 --- a/mtest/libmscore/beam/Beam-S0.mscx +++ b/mtest/libmscore/beam/Beam-S0.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/beam/Beam-dir.mscx b/mtest/libmscore/beam/Beam-dir.mscx index 27c2480e6d0ac..afa33f65a3220 100644 --- a/mtest/libmscore/beam/Beam-dir.mscx +++ b/mtest/libmscore/beam/Beam-dir.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/breath/breath.mscx b/mtest/libmscore/breath/breath.mscx index 2cefdbf88af56..73c780a224d21 100644 --- a/mtest/libmscore/breath/breath.mscx +++ b/mtest/libmscore/breath/breath.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/breath/breath01-ref.mscx b/mtest/libmscore/breath/breath01-ref.mscx index b71f4f96094fd..2ec4ae3d728bf 100644 --- a/mtest/libmscore/breath/breath01-ref.mscx +++ b/mtest/libmscore/breath/breath01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/breath/breath02-ref.mscx b/mtest/libmscore/breath/breath02-ref.mscx index dd8b01dd20d64..975e0f6e68743 100644 --- a/mtest/libmscore/breath/breath02-ref.mscx +++ b/mtest/libmscore/breath/breath02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/add-link-ref.mscx b/mtest/libmscore/chordsymbol/add-link-ref.mscx index c4c8bddd25273..3033dced8a75c 100644 --- a/mtest/libmscore/chordsymbol/add-link-ref.mscx +++ b/mtest/libmscore/chordsymbol/add-link-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/add-link.mscx b/mtest/libmscore/chordsymbol/add-link.mscx index 2c461479d88c7..0a835c64d8e09 100644 --- a/mtest/libmscore/chordsymbol/add-link.mscx +++ b/mtest/libmscore/chordsymbol/add-link.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/add-part-ref.mscx b/mtest/libmscore/chordsymbol/add-part-ref.mscx index 9a55360c145f2..64333fb84c2c4 100644 --- a/mtest/libmscore/chordsymbol/add-part-ref.mscx +++ b/mtest/libmscore/chordsymbol/add-part-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/add-part.mscx b/mtest/libmscore/chordsymbol/add-part.mscx index 4f52892442014..0db012bbb2855 100644 --- a/mtest/libmscore/chordsymbol/add-part.mscx +++ b/mtest/libmscore/chordsymbol/add-part.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/clear-ref.mscx b/mtest/libmscore/chordsymbol/clear-ref.mscx index 9b7a82bcd3838..c8324f34acb00 100644 --- a/mtest/libmscore/chordsymbol/clear-ref.mscx +++ b/mtest/libmscore/chordsymbol/clear-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/clear.mscx b/mtest/libmscore/chordsymbol/clear.mscx index 48f708763ed9e..b85ac9e5a5605 100644 --- a/mtest/libmscore/chordsymbol/clear.mscx +++ b/mtest/libmscore/chordsymbol/clear.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/extend-ref.mscx b/mtest/libmscore/chordsymbol/extend-ref.mscx index b26a981f003f0..55ab41e3c365e 100644 --- a/mtest/libmscore/chordsymbol/extend-ref.mscx +++ b/mtest/libmscore/chordsymbol/extend-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/extend.mscx b/mtest/libmscore/chordsymbol/extend.mscx index 48f708763ed9e..b85ac9e5a5605 100644 --- a/mtest/libmscore/chordsymbol/extend.mscx +++ b/mtest/libmscore/chordsymbol/extend.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/no-system-ref.mscx b/mtest/libmscore/chordsymbol/no-system-ref.mscx index 0f655deaf5993..d985b66c3d047 100644 --- a/mtest/libmscore/chordsymbol/no-system-ref.mscx +++ b/mtest/libmscore/chordsymbol/no-system-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/no-system.mscx b/mtest/libmscore/chordsymbol/no-system.mscx index 73b151b5305d1..436d4bae23316 100644 --- a/mtest/libmscore/chordsymbol/no-system.mscx +++ b/mtest/libmscore/chordsymbol/no-system.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/transpose-part-ref.mscx b/mtest/libmscore/chordsymbol/transpose-part-ref.mscx index a079b27d4185e..fec15d0c23fd3 100644 --- a/mtest/libmscore/chordsymbol/transpose-part-ref.mscx +++ b/mtest/libmscore/chordsymbol/transpose-part-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/transpose-part.mscx b/mtest/libmscore/chordsymbol/transpose-part.mscx index 6b2a23367c341..dce357ada8efa 100644 --- a/mtest/libmscore/chordsymbol/transpose-part.mscx +++ b/mtest/libmscore/chordsymbol/transpose-part.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/transpose-ref.mscx b/mtest/libmscore/chordsymbol/transpose-ref.mscx index 89bc9c21f8a2f..710074fb873c6 100644 --- a/mtest/libmscore/chordsymbol/transpose-ref.mscx +++ b/mtest/libmscore/chordsymbol/transpose-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/chordsymbol/transpose.mscx b/mtest/libmscore/chordsymbol/transpose.mscx index 42c34d13efd25..75cf926d99210 100644 --- a/mtest/libmscore/chordsymbol/transpose.mscx +++ b/mtest/libmscore/chordsymbol/transpose.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef/clef-1-ref.mscx b/mtest/libmscore/clef/clef-1-ref.mscx index f3a35d4149185..cd4a17d1ac216 100644 --- a/mtest/libmscore/clef/clef-1-ref.mscx +++ b/mtest/libmscore/clef/clef-1-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef/clef-1.mscx b/mtest/libmscore/clef/clef-1.mscx index f0e707b0bd993..77ac6171c555a 100644 --- a/mtest/libmscore/clef/clef-1.mscx +++ b/mtest/libmscore/clef/clef-1.mscx @@ -1,5 +1,5 @@ - + 2.0.0 Unknown diff --git a/mtest/libmscore/clef/clef-2-ref.mscx b/mtest/libmscore/clef/clef-2-ref.mscx index 043db94bdf8c7..e41e64ac37dbe 100644 --- a/mtest/libmscore/clef/clef-2-ref.mscx +++ b/mtest/libmscore/clef/clef-2-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef_courtesy/clef_courtesy01-ref.mscx b/mtest/libmscore/clef_courtesy/clef_courtesy01-ref.mscx index 8ee99206ca911..9a1a6afa4b0d3 100644 --- a/mtest/libmscore/clef_courtesy/clef_courtesy01-ref.mscx +++ b/mtest/libmscore/clef_courtesy/clef_courtesy01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef_courtesy/clef_courtesy01.mscx b/mtest/libmscore/clef_courtesy/clef_courtesy01.mscx index 428675ec9d3c4..a881873956a0b 100644 --- a/mtest/libmscore/clef_courtesy/clef_courtesy01.mscx +++ b/mtest/libmscore/clef_courtesy/clef_courtesy01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef_courtesy/clef_courtesy02-ref.mscx b/mtest/libmscore/clef_courtesy/clef_courtesy02-ref.mscx index 1c7d7fd666e2d..bf07fe03ea484 100644 --- a/mtest/libmscore/clef_courtesy/clef_courtesy02-ref.mscx +++ b/mtest/libmscore/clef_courtesy/clef_courtesy02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef_courtesy/clef_courtesy02.mscx b/mtest/libmscore/clef_courtesy/clef_courtesy02.mscx index f0bfb74db5e8e..4605e57621dc8 100644 --- a/mtest/libmscore/clef_courtesy/clef_courtesy02.mscx +++ b/mtest/libmscore/clef_courtesy/clef_courtesy02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef_courtesy/clef_courtesy03-ref.mscx b/mtest/libmscore/clef_courtesy/clef_courtesy03-ref.mscx index 86e0b005ad81f..5009aaf2dd3ae 100644 --- a/mtest/libmscore/clef_courtesy/clef_courtesy03-ref.mscx +++ b/mtest/libmscore/clef_courtesy/clef_courtesy03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef_courtesy/clef_courtesy03.mscx b/mtest/libmscore/clef_courtesy/clef_courtesy03.mscx index aed237c715cbb..2d0dc9a9e0664 100644 --- a/mtest/libmscore/clef_courtesy/clef_courtesy03.mscx +++ b/mtest/libmscore/clef_courtesy/clef_courtesy03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/clef_courtesy/clef_courtesy_78196.mscx b/mtest/libmscore/clef_courtesy/clef_courtesy_78196.mscx index c23045477d9dc..1b5ec208d4d4a 100644 --- a/mtest/libmscore/clef_courtesy/clef_courtesy_78196.mscx +++ b/mtest/libmscore/clef_courtesy/clef_courtesy_78196.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/accidentals-ref.mscx b/mtest/libmscore/compat/accidentals-ref.mscx index 9a444fd125e5b..fc2cf01757603 100644 --- a/mtest/libmscore/compat/accidentals-ref.mscx +++ b/mtest/libmscore/compat/accidentals-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/articulations-ref.mscx b/mtest/libmscore/compat/articulations-ref.mscx index 6092bf431ba5f..c5192338688c9 100644 --- a/mtest/libmscore/compat/articulations-ref.mscx +++ b/mtest/libmscore/compat/articulations-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/chord_symbol-ref.mscx b/mtest/libmscore/compat/chord_symbol-ref.mscx index 878e957b4048a..75e387abf1411 100644 --- a/mtest/libmscore/compat/chord_symbol-ref.mscx +++ b/mtest/libmscore/compat/chord_symbol-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/clef_missing_first-ref.mscx b/mtest/libmscore/compat/clef_missing_first-ref.mscx index 5bd7e79c8557b..d6c13e3a18046 100644 --- a/mtest/libmscore/compat/clef_missing_first-ref.mscx +++ b/mtest/libmscore/compat/clef_missing_first-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/hairpin-ref.mscx b/mtest/libmscore/compat/hairpin-ref.mscx index 4acce2e0d543d..96618b56721f9 100644 --- a/mtest/libmscore/compat/hairpin-ref.mscx +++ b/mtest/libmscore/compat/hairpin-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/hairpin.mscx b/mtest/libmscore/compat/hairpin.mscx index b2f6ecb6aa037..4ce5b953d6424 100644 --- a/mtest/libmscore/compat/hairpin.mscx +++ b/mtest/libmscore/compat/hairpin.mscx @@ -1,515 +1,515 @@ - - - 1.2 + + + 1.2 5449 - - 1.76389 - 480 - - 1 - 1 - - A4 - - 56.6929 - 56.6929 - 56.6929 - 113.386 - - - 56.6929 - 56.6929 - 56.6929 - 113.386 - - 0 - - - - 4 - 4 - - - - - - - - - - - - - - 2 - - - - - - - - - - - - InstrumentLong - 0 - - -

Piano

-
-
- - - InstrumentShort - 0 - - -

Pno.

-
-
- - 21 - 108 - 21 - 108 - Piano - - - - - - - - - - -
- - 2400 - 4800 - - - - 10 - 5 - 5 - 5 - 5 - - - Title - 0 - - -

Hairpin

-
-
-
- - - 260 - 4 - 4 - - - measure - - - - - quarter - - 67 - 15 - - - - quarter - - 67 - 15 - - - - quarter - - 67 - 15 - - - - quarter - - 67 - 15 - - - - - - quarter - - 67 - 15 - - - - quarter - - 67 - 15 - - - - quarter - - 67 - 15 - - - - quarter - - 67 - 15 - - - - - - measure - - - - - line - - - measure - - - - - - MeasureNumber - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - - MeasureNumber - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - 5 - - -
- - - - 260 - 4 - 4 - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - -1 -
+ + 1.76389 + 480 + + 1 + 1 + + A4 + + 56.6929 + 56.6929 + 56.6929 + 113.386 + + + 56.6929 + 56.6929 + 56.6929 + 113.386 + + 0 + + + + 4 + 4 + + + + + + + + + + + + + + 2 + + + + + + + + + + + + InstrumentLong + 0 + + +

Piano

+
+
+ + + InstrumentShort + 0 + + +

Pno.

+
+
+ + 21 + 108 + 21 + 108 + Piano + + + + + + + + + + +
+ + 2400 + 4800 + + + + 10 + 5 + 5 + 5 + 5 + + + Title + 0 + + +

Hairpin

+
+
+
+ + + 260 + 4 + 4 + + + measure + + + + + quarter + + 67 + 15 + + + + quarter + + 67 + 15 + + + + quarter + + 67 + 15 + + + + quarter + + 67 + 15 + + + + + + quarter + + 67 + 15 + + + + quarter + + 67 + 15 + + + + quarter + + 67 + 15 + + + + quarter + + 67 + 15 + + + + + + measure + + + + + line + + + measure + + + + + + MeasureNumber + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + + MeasureNumber + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + 5 + + +
+ + + + 260 + 4 + 4 + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + -1 +
diff --git a/mtest/libmscore/compat/hor_frame_and_mmrest-ref.mscx b/mtest/libmscore/compat/hor_frame_and_mmrest-ref.mscx index a43891df01a4c..ad35d44ec1209 100644 --- a/mtest/libmscore/compat/hor_frame_and_mmrest-ref.mscx +++ b/mtest/libmscore/compat/hor_frame_and_mmrest-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/keysig-ref.mscx b/mtest/libmscore/compat/keysig-ref.mscx index d9ba0e77ec7aa..ee549d2cc1719 100644 --- a/mtest/libmscore/compat/keysig-ref.mscx +++ b/mtest/libmscore/compat/keysig-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/noteheads-ref.mscx b/mtest/libmscore/compat/noteheads-ref.mscx index 7b7a0570a6f4b..943f0baa70e24 100644 --- a/mtest/libmscore/compat/noteheads-ref.mscx +++ b/mtest/libmscore/compat/noteheads-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/notes-ref.mscx b/mtest/libmscore/compat/notes-ref.mscx index 5c58992c67db6..48f2cea4f1d03 100644 --- a/mtest/libmscore/compat/notes-ref.mscx +++ b/mtest/libmscore/compat/notes-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/notes_useroffset-ref.mscx b/mtest/libmscore/compat/notes_useroffset-ref.mscx index 3151f7eb7e9b2..7cc4992f8496e 100644 --- a/mtest/libmscore/compat/notes_useroffset-ref.mscx +++ b/mtest/libmscore/compat/notes_useroffset-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/slurs-ref.mscx b/mtest/libmscore/compat/slurs-ref.mscx index d8a1964943ab6..2ec8a9f994754 100644 --- a/mtest/libmscore/compat/slurs-ref.mscx +++ b/mtest/libmscore/compat/slurs-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/style-ref.mscx b/mtest/libmscore/compat/style-ref.mscx index 5689dd992feaa..c6c2564b621f6 100644 --- a/mtest/libmscore/compat/style-ref.mscx +++ b/mtest/libmscore/compat/style-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/text_scaling-ref.mscx b/mtest/libmscore/compat/text_scaling-ref.mscx index fa7e321e39f0c..bb3faafdceeb0 100644 --- a/mtest/libmscore/compat/text_scaling-ref.mscx +++ b/mtest/libmscore/compat/text_scaling-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/textstyles-ref.mscx b/mtest/libmscore/compat/textstyles-ref.mscx index ffdc1046d5fef..0be346e9941bb 100644 --- a/mtest/libmscore/compat/textstyles-ref.mscx +++ b/mtest/libmscore/compat/textstyles-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/textstyles.mscx b/mtest/libmscore/compat/textstyles.mscx index ba9b7975aaba2..b75f2efe904d4 100644 --- a/mtest/libmscore/compat/textstyles.mscx +++ b/mtest/libmscore/compat/textstyles.mscx @@ -1,766 +1,766 @@ - - - 1.2 + + + 1.2 5470 - - 2 - 480 - - - MuseJazz - 28 - 1 - 0 - 0 - 2 - 0 - 0 - - 0 - 0 - 50 - 0 - - - MuseJazz - 14 - 0 - 0 - 0 - 2 - 0 - 0 - - 0 - 10 - 50 - 0 - - - MuseJazz - 12 - 0 - 0 - 0 - 5 - 0 - 0 - - 0 - 0 - 100 - 100 - - - MuseJazz - 12 - 0 - 0 - 0 - 4 - 0 - 0 - - 0 - 0 - 0 - 100 - - - MuseJazz - 10 - 0 - 0 - 0 - 2 - 1 - 1 - - 0 - 7 - 0 - 0 - - - MuseJazz - 10 - 0 - 0 - 0 - 2 - 1 - 1 - - 0 - 7 - 0 - 0 - - - MuseJazz - 8 - 0 - 0 - 0 - 10 - 0 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 12 - 0 - 0 - 0 - 9 - 0 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 12 - 0 - 0 - 0 - 9 - 0 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 18 - 0 - 0 - 0 - 4 - 0 - 0 - - 0 - 0 - 0 - 100 - - - MuseJazz - 12 - 0 - 1 - 0 - 16 - 1 - 1 - - 0 - 8 - 0 - 0 - - - MuseJazz - 12 - 0 - 1 - 0 - 16 - 1 - 0 - - 0 - -2 - 0 - 0 - - - MuseJazz - 12 - 1 - 0 - 0 - 16 - 1 - 1 - - 0 - -4 - 0 - 0 - 1 - - - MuseJazz - 12 - 1 - 0 - 0 - 0 - 1 - 0 - - 0 - 0 - 0 - 0 - - - MuseJazz - 9 - 0 - 0 - 0 - 2 - 0 - 0 - - 0 - -10 - 50 - 100 - - - MuseJazz - 8 - 0 - 0 - 0 - 10 - 1 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 10 - 0 - 0 - 0 - 17 - 0 - 0 - - 0 - -10 - 50 - 100 - - - MuseJazz - 10 - 0 - 0 - 0 - 16 - 0 - 0 - - 0 - -10 - 50 - 100 - - - MuseJazz - 11 - 0 - 0 - 0 - 2 - 1 - 0 - - 0 - 6 - 0 - 0 - - - MuseJazz - 8 - 0 - 0 - 0 - 10 - 1 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 10 - 0 - 0 - 0 - 0 - 1 - 1 - - 0 - -4 - 0 - 0 - 1 - - - MuseJazz - 10 - 0 - 0 - 0 - 0 - 1 - 1 - - 0 - 5.5 - 0 - 0 - - - MuseJazz - 15 - 0 - 0 - 0 - 16 - 1 - 1 - - 0 - -2.5 - 0 - 0 - - - MuseJazz - 12 - 0 - 0 - 0 - 17 - 1 - 1 - - -2 - -4 - 0 - 0 - 0.3 - 0.3 - 10 - - 1 - - - MuseJazz - 13 - 0 - 0 - 0 - 18 - 1 - 1 - - 0 - -4 - 100 - 0 - 1 - - - MuseJazz - 9 - 0 - 0 - 0 - 0 - 1 - 1 - - 0.1 - -0.1 - 0 - 0 - - - MuseJazz - 11 - 1 - 0 - 0 - 0 - 1 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 12 - 0 - 0 - 0 - 8 - 1 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 8 - 0 - 1 - 0 - 18 - 1 - 1 - - 0 - 0 - 0 - 0 - - - MuseJazz - 8 - 0 - 0 - 0 - 10 - 1 - 1 - - 0 - -5 - 100 - 0 - 0.2 - -0.2 - 0 - - 1 - - 1 - 1 - - A4 - - 56.6929 - 56.6929 - 56.6929 - 113.386 - - 0 - - - - Copyright - 0 - - -

Copyright

-
-
- - - 4 - 4 - - - - - - - - - - - - - - - - Piano - - - - - - - - - - - - - - 6.36254 - 5 - 5 - 5 - 5 - - - Title - 0 - - -

Title

-
-
- - - Subtitle - 0 - - -

Subtitle

-
-
- - - Composer - 0 - - -

Composer

-
-
- - - Poet - 0 - - -

Lyricist

-
-
-
- - - 1 - 1 - - - 260 - 4 - 4 - - - 1 - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - 5 - - -
- 0 -
+ + 2 + 480 + + + MuseJazz + 28 + 1 + 0 + 0 + 2 + 0 + 0 + + 0 + 0 + 50 + 0 + + + MuseJazz + 14 + 0 + 0 + 0 + 2 + 0 + 0 + + 0 + 10 + 50 + 0 + + + MuseJazz + 12 + 0 + 0 + 0 + 5 + 0 + 0 + + 0 + 0 + 100 + 100 + + + MuseJazz + 12 + 0 + 0 + 0 + 4 + 0 + 0 + + 0 + 0 + 0 + 100 + + + MuseJazz + 10 + 0 + 0 + 0 + 2 + 1 + 1 + + 0 + 7 + 0 + 0 + + + MuseJazz + 10 + 0 + 0 + 0 + 2 + 1 + 1 + + 0 + 7 + 0 + 0 + + + MuseJazz + 8 + 0 + 0 + 0 + 10 + 0 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 12 + 0 + 0 + 0 + 9 + 0 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 12 + 0 + 0 + 0 + 9 + 0 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 18 + 0 + 0 + 0 + 4 + 0 + 0 + + 0 + 0 + 0 + 100 + + + MuseJazz + 12 + 0 + 1 + 0 + 16 + 1 + 1 + + 0 + 8 + 0 + 0 + + + MuseJazz + 12 + 0 + 1 + 0 + 16 + 1 + 0 + + 0 + -2 + 0 + 0 + + + MuseJazz + 12 + 1 + 0 + 0 + 16 + 1 + 1 + + 0 + -4 + 0 + 0 + 1 + + + MuseJazz + 12 + 1 + 0 + 0 + 0 + 1 + 0 + + 0 + 0 + 0 + 0 + + + MuseJazz + 9 + 0 + 0 + 0 + 2 + 0 + 0 + + 0 + -10 + 50 + 100 + + + MuseJazz + 8 + 0 + 0 + 0 + 10 + 1 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 10 + 0 + 0 + 0 + 17 + 0 + 0 + + 0 + -10 + 50 + 100 + + + MuseJazz + 10 + 0 + 0 + 0 + 16 + 0 + 0 + + 0 + -10 + 50 + 100 + + + MuseJazz + 11 + 0 + 0 + 0 + 2 + 1 + 0 + + 0 + 6 + 0 + 0 + + + MuseJazz + 8 + 0 + 0 + 0 + 10 + 1 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 10 + 0 + 0 + 0 + 0 + 1 + 1 + + 0 + -4 + 0 + 0 + 1 + + + MuseJazz + 10 + 0 + 0 + 0 + 0 + 1 + 1 + + 0 + 5.5 + 0 + 0 + + + MuseJazz + 15 + 0 + 0 + 0 + 16 + 1 + 1 + + 0 + -2.5 + 0 + 0 + + + MuseJazz + 12 + 0 + 0 + 0 + 17 + 1 + 1 + + -2 + -4 + 0 + 0 + 0.3 + 0.3 + 10 + + 1 + + + MuseJazz + 13 + 0 + 0 + 0 + 18 + 1 + 1 + + 0 + -4 + 100 + 0 + 1 + + + MuseJazz + 9 + 0 + 0 + 0 + 0 + 1 + 1 + + 0.1 + -0.1 + 0 + 0 + + + MuseJazz + 11 + 1 + 0 + 0 + 0 + 1 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 12 + 0 + 0 + 0 + 8 + 1 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 8 + 0 + 1 + 0 + 18 + 1 + 1 + + 0 + 0 + 0 + 0 + + + MuseJazz + 8 + 0 + 0 + 0 + 10 + 1 + 1 + + 0 + -5 + 100 + 0 + 0.2 + -0.2 + 0 + + 1 + + 1 + 1 + + A4 + + 56.6929 + 56.6929 + 56.6929 + 113.386 + + 0 + + + + Copyright + 0 + + +

Copyright

+
+
+ + + 4 + 4 + + + + + + + + + + + + + + + + Piano + + + + + + + + + + + + + + 6.36254 + 5 + 5 + 5 + 5 + + + Title + 0 + + +

Title

+
+
+ + + Subtitle + 0 + + +

Subtitle

+
+
+ + + Composer + 0 + + +

Composer

+
+
+ + + Poet + 0 + + +

Lyricist

+
+
+
+ + + 1 + 1 + + + 260 + 4 + 4 + + + 1 + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + 5 + + +
+ 0 +
diff --git a/mtest/libmscore/compat/title-ref.mscx b/mtest/libmscore/compat/title-ref.mscx index ca6893edac963..0983e827c344e 100644 --- a/mtest/libmscore/compat/title-ref.mscx +++ b/mtest/libmscore/compat/title-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/compat/title.mscx b/mtest/libmscore/compat/title.mscx index 302fc0c18b83c..4c8c0887ad03f 100644 --- a/mtest/libmscore/compat/title.mscx +++ b/mtest/libmscore/compat/title.mscx @@ -1,488 +1,488 @@ - - - 1.2 + + + 1.2 5449 - - 1.76389 - 480 - - 1 - 1 - - A4 - - 56.6929 - 56.6929 - 56.6929 - 113.386 - - - 56.6929 - 56.6929 - 56.6929 - 113.386 - - 0 - - - - 4 - 4 - - - - - - - - - - - - - - 2 - - - - - - - - - - - - InstrumentLong - 0 - - -

Piano

-
-
- - - InstrumentShort - 0 - - -

Pno.

-
-
- - 21 - 108 - 21 - 108 - Piano - - - - - - - - - - -
- - - 10 - 5 - 5 - 5 - 5 - - - Title - 0 - - -

title

-
-
- - - Subtitle - 0 - - -

subtitle

-
-
- - - Composer - 0 - - -

Composer

-
-
- - - Poet - 1 - 0 - - -

Lyrics

-
-
-
- - - 260 - 4 - 4 - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - - MeasureNumber - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - 5 - - -
- - - - 260 - 4 - 4 - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - - measure - - - - -1 -
+ + 1.76389 + 480 + + 1 + 1 + + A4 + + 56.6929 + 56.6929 + 56.6929 + 113.386 + + + 56.6929 + 56.6929 + 56.6929 + 113.386 + + 0 + + + + 4 + 4 + + + + + + + + + + + + + + 2 + + + + + + + + + + + + InstrumentLong + 0 + + +

Piano

+
+
+ + + InstrumentShort + 0 + + +

Pno.

+
+
+ + 21 + 108 + 21 + 108 + Piano + + + + + + + + + + +
+ + + 10 + 5 + 5 + 5 + 5 + + + Title + 0 + + +

title

+
+
+ + + Subtitle + 0 + + +

subtitle

+
+
+ + + Composer + 0 + + +

Composer

+
+
+ + + Poet + 1 + 0 + + +

Lyrics

+
+
+
+ + + 260 + 4 + 4 + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + + MeasureNumber + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + 5 + + +
+ + + + 260 + 4 + 4 + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + + measure + + + + -1 +
diff --git a/mtest/libmscore/compat/tremolo2notes-ref.mscx b/mtest/libmscore/compat/tremolo2notes-ref.mscx index ed4b5bd4f9abd..3278247b0d03f 100644 --- a/mtest/libmscore/compat/tremolo2notes-ref.mscx +++ b/mtest/libmscore/compat/tremolo2notes-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/concertpitch/concertpitchbenchmark.mscx b/mtest/libmscore/concertpitch/concertpitchbenchmark.mscx index 0a07ab1b4f332..71c1a9db060ef 100644 --- a/mtest/libmscore/concertpitch/concertpitchbenchmark.mscx +++ b/mtest/libmscore/concertpitch/concertpitchbenchmark.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste01-ref.mscx b/mtest/libmscore/copypaste/copypaste01-ref.mscx index a395dede68362..a516b1139141e 100644 --- a/mtest/libmscore/copypaste/copypaste01-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste01.mscx b/mtest/libmscore/copypaste/copypaste01.mscx index 6005eaf04d079..3b0e2c931d98e 100644 --- a/mtest/libmscore/copypaste/copypaste01.mscx +++ b/mtest/libmscore/copypaste/copypaste01.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste02-ref.mscx b/mtest/libmscore/copypaste/copypaste02-ref.mscx index a51408793fc66..1ca3c93ef9449 100644 --- a/mtest/libmscore/copypaste/copypaste02-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste02.mscx b/mtest/libmscore/copypaste/copypaste02.mscx index 55c0f8e2ffc89..e6d68ac443cd9 100644 --- a/mtest/libmscore/copypaste/copypaste02.mscx +++ b/mtest/libmscore/copypaste/copypaste02.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste03-ref.mscx b/mtest/libmscore/copypaste/copypaste03-ref.mscx index a9a8d91a1c7ed..23d8f65b99582 100644 --- a/mtest/libmscore/copypaste/copypaste03-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste03.mscx b/mtest/libmscore/copypaste/copypaste03.mscx index 1ab5cd5a97be7..0509e44657d74 100644 --- a/mtest/libmscore/copypaste/copypaste03.mscx +++ b/mtest/libmscore/copypaste/copypaste03.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste04-ref.mscx b/mtest/libmscore/copypaste/copypaste04-ref.mscx index b87d6335fd60c..85c14a50857a6 100644 --- a/mtest/libmscore/copypaste/copypaste04-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste04.mscx b/mtest/libmscore/copypaste/copypaste04.mscx index 80a2e0f8883e1..f535e4f0ea32d 100644 --- a/mtest/libmscore/copypaste/copypaste04.mscx +++ b/mtest/libmscore/copypaste/copypaste04.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste05-ref.mscx b/mtest/libmscore/copypaste/copypaste05-ref.mscx index 291761380e21f..b783ce8ab9e3c 100644 --- a/mtest/libmscore/copypaste/copypaste05-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste05-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste05.mscx b/mtest/libmscore/copypaste/copypaste05.mscx index 90671eea22c68..545f9bf3de5c6 100644 --- a/mtest/libmscore/copypaste/copypaste05.mscx +++ b/mtest/libmscore/copypaste/copypaste05.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste06-ref.mscx b/mtest/libmscore/copypaste/copypaste06-ref.mscx index 86cdb2f82997a..1894f0f435254 100644 --- a/mtest/libmscore/copypaste/copypaste06-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste06-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste06.mscx b/mtest/libmscore/copypaste/copypaste06.mscx index 7000c9d7a50c1..bb4afe9708714 100644 --- a/mtest/libmscore/copypaste/copypaste06.mscx +++ b/mtest/libmscore/copypaste/copypaste06.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste07-ref.mscx b/mtest/libmscore/copypaste/copypaste07-ref.mscx index 173d2ed8d2013..6b99e2d6b2f3a 100644 --- a/mtest/libmscore/copypaste/copypaste07-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste07-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste07.mscx b/mtest/libmscore/copypaste/copypaste07.mscx index e02882d4840c1..55f1332bbe0fc 100644 --- a/mtest/libmscore/copypaste/copypaste07.mscx +++ b/mtest/libmscore/copypaste/copypaste07.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste08-ref.mscx b/mtest/libmscore/copypaste/copypaste08-ref.mscx index 872cf2b82240b..bcd55340054f7 100644 --- a/mtest/libmscore/copypaste/copypaste08-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste08-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste08.mscx b/mtest/libmscore/copypaste/copypaste08.mscx index dbbaa8ea9186c..4070266693ced 100644 --- a/mtest/libmscore/copypaste/copypaste08.mscx +++ b/mtest/libmscore/copypaste/copypaste08.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste09-ref.mscx b/mtest/libmscore/copypaste/copypaste09-ref.mscx index da0fa44e7882a..b24fe922756a2 100644 --- a/mtest/libmscore/copypaste/copypaste09-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste09-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste09.mscx b/mtest/libmscore/copypaste/copypaste09.mscx index ff4e5ff607cf4..b74f1d537c38b 100644 --- a/mtest/libmscore/copypaste/copypaste09.mscx +++ b/mtest/libmscore/copypaste/copypaste09.mscx @@ -1,5 +1,5 @@ - + 2.0.0 35650ee diff --git a/mtest/libmscore/copypaste/copypaste10-ref.mscx b/mtest/libmscore/copypaste/copypaste10-ref.mscx index 28080c7d78eab..78164807d9868 100644 --- a/mtest/libmscore/copypaste/copypaste10-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste10-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste10.mscx b/mtest/libmscore/copypaste/copypaste10.mscx index 6e5b1d97760b5..de04fa90e1b52 100644 --- a/mtest/libmscore/copypaste/copypaste10.mscx +++ b/mtest/libmscore/copypaste/copypaste10.mscx @@ -1,5 +1,5 @@ - + 2.0.0 d9c596a diff --git a/mtest/libmscore/copypaste/copypaste11-ref.mscx b/mtest/libmscore/copypaste/copypaste11-ref.mscx index 41e720aadc942..16e88395050a9 100644 --- a/mtest/libmscore/copypaste/copypaste11-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste11-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste11.mscx b/mtest/libmscore/copypaste/copypaste11.mscx index d5893ddda52b7..f7fdce0118354 100644 --- a/mtest/libmscore/copypaste/copypaste11.mscx +++ b/mtest/libmscore/copypaste/copypaste11.mscx @@ -1,5 +1,5 @@ - + 2.0.0 d9c596a diff --git a/mtest/libmscore/copypaste/copypaste12-ref.mscx b/mtest/libmscore/copypaste/copypaste12-ref.mscx index 943390ba37834..7a7b5161544a8 100644 --- a/mtest/libmscore/copypaste/copypaste12-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste12-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste12.mscx b/mtest/libmscore/copypaste/copypaste12.mscx index f7dc50f6e8ea6..490087ddac318 100644 --- a/mtest/libmscore/copypaste/copypaste12.mscx +++ b/mtest/libmscore/copypaste/copypaste12.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste13-ref.mscx b/mtest/libmscore/copypaste/copypaste13-ref.mscx index 3068b4b5dce2d..05eea2c5b112e 100644 --- a/mtest/libmscore/copypaste/copypaste13-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste13-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste13.mscx b/mtest/libmscore/copypaste/copypaste13.mscx index 2b258178c39a3..501bb84cb9adc 100644 --- a/mtest/libmscore/copypaste/copypaste13.mscx +++ b/mtest/libmscore/copypaste/copypaste13.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste14-ref.mscx b/mtest/libmscore/copypaste/copypaste14-ref.mscx index e88d748deb414..70b3811ed5636 100644 --- a/mtest/libmscore/copypaste/copypaste14-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste14-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste14.mscx b/mtest/libmscore/copypaste/copypaste14.mscx index e22edf158f2e1..f189ad99199ac 100644 --- a/mtest/libmscore/copypaste/copypaste14.mscx +++ b/mtest/libmscore/copypaste/copypaste14.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste15-ref.mscx b/mtest/libmscore/copypaste/copypaste15-ref.mscx index 78be7ee7ebc64..3110d8f7b9b44 100644 --- a/mtest/libmscore/copypaste/copypaste15-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste15-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste15.mscx b/mtest/libmscore/copypaste/copypaste15.mscx index 3a9f14cb41921..eebe5a681621e 100644 --- a/mtest/libmscore/copypaste/copypaste15.mscx +++ b/mtest/libmscore/copypaste/copypaste15.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste16-ref.mscx b/mtest/libmscore/copypaste/copypaste16-ref.mscx index fa82fa145181f..4d318d61174ee 100644 --- a/mtest/libmscore/copypaste/copypaste16-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste16-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste16.mscx b/mtest/libmscore/copypaste/copypaste16.mscx index 6293e1163d443..b46015a274a3a 100644 --- a/mtest/libmscore/copypaste/copypaste16.mscx +++ b/mtest/libmscore/copypaste/copypaste16.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste17-ref.mscx b/mtest/libmscore/copypaste/copypaste17-ref.mscx index 07fd1e3169c84..bb111598debb4 100644 --- a/mtest/libmscore/copypaste/copypaste17-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste17-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste17.mscx b/mtest/libmscore/copypaste/copypaste17.mscx index 2ae8917a21b7f..ab3e946be0973 100644 --- a/mtest/libmscore/copypaste/copypaste17.mscx +++ b/mtest/libmscore/copypaste/copypaste17.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste18-ref.mscx b/mtest/libmscore/copypaste/copypaste18-ref.mscx index 249f3ff12a64b..f274460170a76 100644 --- a/mtest/libmscore/copypaste/copypaste18-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste18-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste18.mscx b/mtest/libmscore/copypaste/copypaste18.mscx index e22edf158f2e1..f189ad99199ac 100644 --- a/mtest/libmscore/copypaste/copypaste18.mscx +++ b/mtest/libmscore/copypaste/copypaste18.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste19-ref.mscx b/mtest/libmscore/copypaste/copypaste19-ref.mscx index fee360b3c78d6..dd73a6caba1c8 100644 --- a/mtest/libmscore/copypaste/copypaste19-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste19-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste19.mscx b/mtest/libmscore/copypaste/copypaste19.mscx index 065a78a5af71b..f0e700837501b 100644 --- a/mtest/libmscore/copypaste/copypaste19.mscx +++ b/mtest/libmscore/copypaste/copypaste19.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste20-ref.mscx b/mtest/libmscore/copypaste/copypaste20-ref.mscx index 1283f7fe964d3..8be9e23bec948 100644 --- a/mtest/libmscore/copypaste/copypaste20-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste20-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste20.mscx b/mtest/libmscore/copypaste/copypaste20.mscx index b33f5354d50eb..da906a4e02555 100644 --- a/mtest/libmscore/copypaste/copypaste20.mscx +++ b/mtest/libmscore/copypaste/copypaste20.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste21-ref.mscx b/mtest/libmscore/copypaste/copypaste21-ref.mscx index 10f3ef6f16515..ffaf2ee8b2946 100644 --- a/mtest/libmscore/copypaste/copypaste21-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste21-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste21.mscx b/mtest/libmscore/copypaste/copypaste21.mscx index f41b5086a27eb..e4262f3ae81b0 100644 --- a/mtest/libmscore/copypaste/copypaste21.mscx +++ b/mtest/libmscore/copypaste/copypaste21.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste22-ref.mscx b/mtest/libmscore/copypaste/copypaste22-ref.mscx index beae6fad9f57b..6ec874c7186d5 100644 --- a/mtest/libmscore/copypaste/copypaste22-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste22-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste22.mscx b/mtest/libmscore/copypaste/copypaste22.mscx index 6d0ac8db83557..81fe1c53df23b 100644 --- a/mtest/libmscore/copypaste/copypaste22.mscx +++ b/mtest/libmscore/copypaste/copypaste22.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste50-ref.mscx b/mtest/libmscore/copypaste/copypaste50-ref.mscx index 21e37cca17575..808acc3b75f1f 100644 --- a/mtest/libmscore/copypaste/copypaste50-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste50-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste50.mscx b/mtest/libmscore/copypaste/copypaste50.mscx index 81ace04266acf..066e8ded76c54 100644 --- a/mtest/libmscore/copypaste/copypaste50.mscx +++ b/mtest/libmscore/copypaste/copypaste50.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste_partial_01-ref.mscx b/mtest/libmscore/copypaste/copypaste_partial_01-ref.mscx index 110bfd79de273..4b9635242f2a7 100644 --- a/mtest/libmscore/copypaste/copypaste_partial_01-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste_partial_01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste_partial_01.mscx b/mtest/libmscore/copypaste/copypaste_partial_01.mscx index 038ec4c2bbe7f..3fa4a1033e3df 100644 --- a/mtest/libmscore/copypaste/copypaste_partial_01.mscx +++ b/mtest/libmscore/copypaste/copypaste_partial_01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste_tuplet_01-ref.mscx b/mtest/libmscore/copypaste/copypaste_tuplet_01-ref.mscx index dd474743e569b..75aea19feaa67 100644 --- a/mtest/libmscore/copypaste/copypaste_tuplet_01-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste_tuplet_01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste_tuplet_01.mscx b/mtest/libmscore/copypaste/copypaste_tuplet_01.mscx index fb95cbcb7182a..f9e2d01a107db 100644 --- a/mtest/libmscore/copypaste/copypaste_tuplet_01.mscx +++ b/mtest/libmscore/copypaste/copypaste_tuplet_01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste_tuplet_02-ref.mscx b/mtest/libmscore/copypaste/copypaste_tuplet_02-ref.mscx index dd474743e569b..75aea19feaa67 100644 --- a/mtest/libmscore/copypaste/copypaste_tuplet_02-ref.mscx +++ b/mtest/libmscore/copypaste/copypaste_tuplet_02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypaste/copypaste_tuplet_02.mscx b/mtest/libmscore/copypaste/copypaste_tuplet_02.mscx index 1e76497641bdb..c8d0b234c5cbe 100644 --- a/mtest/libmscore/copypaste/copypaste_tuplet_02.mscx +++ b/mtest/libmscore/copypaste/copypaste_tuplet_02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-ref.mscx index 51aad03a41598..3765e396cbbbb 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest-ref.mscx index 7a38badd2dae5..53e26f4cbd822 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest.mscx index e7d201be7aad7..9d61d7b94b7a5 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation-rest.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation.mscx index aa9f0353e790c..9733dc5344ba8 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-articulation.mscx @@ -1,5 +1,5 @@ - + 2.0.0 e5de291 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01-ref.mscx index 620e2a6a3f3e8..73a85c43ed0f3 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01.mscx index 6334ecc08a87e..fe296193c5adf 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-ref.mscx index 820a92cec24ba..9bcad246a88d5 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames.mscx index f2d414d27a3f3..7840fb1b20d6c 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-chordnames.mscx @@ -1,5 +1,5 @@ - + 2.0.0 fa034c3 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest-ref.mscx index c40b5707c3792..3297751d022fa 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest.mscx index 48514974ddaa9..58bd3f6963841 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-fermata-rest.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass-ref.mscx index 2ed5bd15469b5..4534872bbd740 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass.mscx index ce0d815139f27..8a11348722a9f 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-figuredbass.mscx @@ -1,5 +1,5 @@ - + 2.0.0 e5de291 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics-ref.mscx index 677c058d2fe77..d2be5e2cf4936 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics.mscx index f62c22828cdb8..e6d0f5521ebe3 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-lyrics.mscx @@ -1,5 +1,5 @@ - + 2.0.0 e5de291 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01-ref.mscx index 0a210f9d9125e..092d7b90f1a07 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01.mscx index 28a9915f2e3c6..035174f6e77ca 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-ref.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-ref.mscx index 8bf7c8d3ed399..1f09a65834646 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-ref.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range.mscx b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range.mscx index 28a9915f2e3c6..035174f6e77ca 100644 --- a/mtest/libmscore/copypastesymbollist/copypastesymbollist-range.mscx +++ b/mtest/libmscore/copypastesymbollist/copypastesymbollist-range.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/earlymusic/mensurstrich01-ref.mscx b/mtest/libmscore/earlymusic/mensurstrich01-ref.mscx index 81c35dd884cd8..b492a93c4dda3 100644 --- a/mtest/libmscore/earlymusic/mensurstrich01-ref.mscx +++ b/mtest/libmscore/earlymusic/mensurstrich01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/earlymusic/mensurstrich01.mscx b/mtest/libmscore/earlymusic/mensurstrich01.mscx index 708558f13d72f..e806171f9e8ca 100644 --- a/mtest/libmscore/earlymusic/mensurstrich01.mscx +++ b/mtest/libmscore/earlymusic/mensurstrich01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/add-ref.mscx b/mtest/libmscore/instrumentchange/add-ref.mscx index 51bc9fff7bf6d..bc36649520e39 100644 --- a/mtest/libmscore/instrumentchange/add-ref.mscx +++ b/mtest/libmscore/instrumentchange/add-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/add.mscx b/mtest/libmscore/instrumentchange/add.mscx index 234e588f9f451..b346174f22af1 100644 --- a/mtest/libmscore/instrumentchange/add.mscx +++ b/mtest/libmscore/instrumentchange/add.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/change-ref.mscx b/mtest/libmscore/instrumentchange/change-ref.mscx index c2e8f04b8345e..591be4a0b91e3 100644 --- a/mtest/libmscore/instrumentchange/change-ref.mscx +++ b/mtest/libmscore/instrumentchange/change-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/change.mscx b/mtest/libmscore/instrumentchange/change.mscx index c6b175e6699eb..9453e6db40f35 100644 --- a/mtest/libmscore/instrumentchange/change.mscx +++ b/mtest/libmscore/instrumentchange/change.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/copy-ref.mscx b/mtest/libmscore/instrumentchange/copy-ref.mscx index da225f9080b98..78490ef9be1df 100644 --- a/mtest/libmscore/instrumentchange/copy-ref.mscx +++ b/mtest/libmscore/instrumentchange/copy-ref.mscx @@ -1,5 +1,5 @@ - + 0 @@ -163,8 +163,6 @@ 85 52 80 - -1 - -2 brass.trumpet.bflat 100 @@ -385,8 +383,6 @@ 85 52 80 - -1 - -2 brass.trumpet.bflat 100 @@ -430,7 +426,6 @@ 72 14 - 16 @@ -438,7 +433,6 @@ 72 14 - 16 @@ -448,7 +442,6 @@ 72 14 - 16 @@ -456,7 +449,6 @@ 72 14 - 16 @@ -466,7 +458,6 @@ 72 14 - 16 @@ -474,7 +465,6 @@ 72 14 - 16 @@ -484,7 +474,6 @@ 72 14 - 16 @@ -492,7 +481,6 @@ 72 14 - 16 @@ -502,7 +490,6 @@ 72 14 - 16 @@ -510,7 +497,6 @@ 72 14 - 16 @@ -520,7 +506,6 @@ 72 14 - 16 @@ -528,7 +513,6 @@ 72 14 - 16 diff --git a/mtest/libmscore/instrumentchange/copy.mscx b/mtest/libmscore/instrumentchange/copy.mscx index 6ca2e7e5aeec2..72de4b8f7d6f5 100644 --- a/mtest/libmscore/instrumentchange/copy.mscx +++ b/mtest/libmscore/instrumentchange/copy.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/delete-ref.mscx b/mtest/libmscore/instrumentchange/delete-ref.mscx index 744425b99d8ea..1a35c8eb3a8e9 100644 --- a/mtest/libmscore/instrumentchange/delete-ref.mscx +++ b/mtest/libmscore/instrumentchange/delete-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/delete.mscx b/mtest/libmscore/instrumentchange/delete.mscx index 932b44c3f5bc6..31741db84fa9d 100644 --- a/mtest/libmscore/instrumentchange/delete.mscx +++ b/mtest/libmscore/instrumentchange/delete.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/mixer-ref.mscx b/mtest/libmscore/instrumentchange/mixer-ref.mscx index 193948bae7419..1e33f95951aaf 100644 --- a/mtest/libmscore/instrumentchange/mixer-ref.mscx +++ b/mtest/libmscore/instrumentchange/mixer-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/instrumentchange/mixer.mscx b/mtest/libmscore/instrumentchange/mixer.mscx index c6b175e6699eb..9453e6db40f35 100644 --- a/mtest/libmscore/instrumentchange/mixer.mscx +++ b/mtest/libmscore/instrumentchange/mixer.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join01-ref.mscx b/mtest/libmscore/join/join01-ref.mscx index 051078ecc0a70..86f50f2921657 100644 --- a/mtest/libmscore/join/join01-ref.mscx +++ b/mtest/libmscore/join/join01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join01.mscx b/mtest/libmscore/join/join01.mscx index 87e9e7fca0cf3..2cf28245b0dee 100644 --- a/mtest/libmscore/join/join01.mscx +++ b/mtest/libmscore/join/join01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join02-ref.mscx b/mtest/libmscore/join/join02-ref.mscx index aafeeeeeaef94..7c4acc972fe31 100644 --- a/mtest/libmscore/join/join02-ref.mscx +++ b/mtest/libmscore/join/join02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join02.mscx b/mtest/libmscore/join/join02.mscx index 5782d30b037cd..ffc033b240465 100644 --- a/mtest/libmscore/join/join02.mscx +++ b/mtest/libmscore/join/join02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join03-ref.mscx b/mtest/libmscore/join/join03-ref.mscx index 8eb44f312c93e..b11df97eb9b11 100644 --- a/mtest/libmscore/join/join03-ref.mscx +++ b/mtest/libmscore/join/join03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join03.mscx b/mtest/libmscore/join/join03.mscx index c42a2a475373f..805394433dbcd 100644 --- a/mtest/libmscore/join/join03.mscx +++ b/mtest/libmscore/join/join03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join04-ref.mscx b/mtest/libmscore/join/join04-ref.mscx index 4f8a4aaa1a8aa..4ff598e7ff91d 100644 --- a/mtest/libmscore/join/join04-ref.mscx +++ b/mtest/libmscore/join/join04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join04.mscx b/mtest/libmscore/join/join04.mscx index 18992fc10c94d..4ea0f4ca88be2 100644 --- a/mtest/libmscore/join/join04.mscx +++ b/mtest/libmscore/join/join04.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join05-ref.mscx b/mtest/libmscore/join/join05-ref.mscx index c9b21a2a0c0f7..f33bfbe5796f4 100644 --- a/mtest/libmscore/join/join05-ref.mscx +++ b/mtest/libmscore/join/join05-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join05.mscx b/mtest/libmscore/join/join05.mscx index ae399b5731d20..493cec67c987a 100644 --- a/mtest/libmscore/join/join05.mscx +++ b/mtest/libmscore/join/join05.mscx @@ -1,5 +1,5 @@ - + 2.0.0 5524:5526M diff --git a/mtest/libmscore/join/join06-ref.mscx b/mtest/libmscore/join/join06-ref.mscx index 031c14103a419..60c7998e17445 100644 --- a/mtest/libmscore/join/join06-ref.mscx +++ b/mtest/libmscore/join/join06-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join06.mscx b/mtest/libmscore/join/join06.mscx index f9abddcbc144b..33b4513bde526 100644 --- a/mtest/libmscore/join/join06.mscx +++ b/mtest/libmscore/join/join06.mscx @@ -1,5 +1,5 @@ - + 2.0.0 5524:5526M diff --git a/mtest/libmscore/join/join07-ref.mscx b/mtest/libmscore/join/join07-ref.mscx index 2fb44699c65e9..333c27e92eeb5 100644 --- a/mtest/libmscore/join/join07-ref.mscx +++ b/mtest/libmscore/join/join07-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join07.mscx b/mtest/libmscore/join/join07.mscx index 950b7bcc7dae8..05467aeb74cdd 100644 --- a/mtest/libmscore/join/join07.mscx +++ b/mtest/libmscore/join/join07.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/join/join08.mscx b/mtest/libmscore/join/join08.mscx index d67607d7afa2a..329a4a2d4bc8d 100644 --- a/mtest/libmscore/join/join08.mscx +++ b/mtest/libmscore/join/join08.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/keysig/concert-pitch-01-ref.mscx b/mtest/libmscore/keysig/concert-pitch-01-ref.mscx index 8ef7856fd050f..1614ec28dea07 100644 --- a/mtest/libmscore/keysig/concert-pitch-01-ref.mscx +++ b/mtest/libmscore/keysig/concert-pitch-01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/keysig/concert-pitch-02-ref.mscx b/mtest/libmscore/keysig/concert-pitch-02-ref.mscx index cd4ec10b23b10..595ca4dabb62f 100644 --- a/mtest/libmscore/keysig/concert-pitch-02-ref.mscx +++ b/mtest/libmscore/keysig/concert-pitch-02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/keysig/concert-pitch.mscx b/mtest/libmscore/keysig/concert-pitch.mscx index cd4ec10b23b10..595ca4dabb62f 100644 --- a/mtest/libmscore/keysig/concert-pitch.mscx +++ b/mtest/libmscore/keysig/concert-pitch.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/keysig/keysig.mscx b/mtest/libmscore/keysig/keysig.mscx index b8de5ef9fff91..d1eb1a37386bd 100644 --- a/mtest/libmscore/keysig/keysig.mscx +++ b/mtest/libmscore/keysig/keysig.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/keysig/keysig01-ref.mscx b/mtest/libmscore/keysig/keysig01-ref.mscx index 2d19949f9ce85..b28698254bda0 100644 --- a/mtest/libmscore/keysig/keysig01-ref.mscx +++ b/mtest/libmscore/keysig/keysig01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/keysig/keysig02-ref.mscx b/mtest/libmscore/keysig/keysig02-ref.mscx index 791c5cd339cf8..0cc7315103cf5 100644 --- a/mtest/libmscore/keysig/keysig02-ref.mscx +++ b/mtest/libmscore/keysig/keysig02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/keysig/keysig_78216.mscx b/mtest/libmscore/keysig/keysig_78216.mscx index 7eb10c6b784ce..680fd4307d1d1 100644 --- a/mtest/libmscore/keysig/keysig_78216.mscx +++ b/mtest/libmscore/keysig/keysig_78216.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/layout/goldberg.mscx b/mtest/libmscore/layout/goldberg.mscx index 7080e5cbd7947..8ee57d490c6e5 100644 --- a/mtest/libmscore/layout/goldberg.mscx +++ b/mtest/libmscore/layout/goldberg.mscx @@ -1,5 +1,5 @@ - + 2.3.0 3543170 @@ -29388,7 +29388,7 @@ Canone alla Quarta 1.4 1 - + 0 0 -4 diff --git a/mtest/libmscore/measure/measure-1-ref.mscx b/mtest/libmscore/measure/measure-1-ref.mscx index c5b6bac83c51e..7bc058c908864 100644 --- a/mtest/libmscore/measure/measure-1-ref.mscx +++ b/mtest/libmscore/measure/measure-1-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-1.mscx b/mtest/libmscore/measure/measure-1.mscx index cba3beb652f2d..1bc14284fdc92 100644 --- a/mtest/libmscore/measure/measure-1.mscx +++ b/mtest/libmscore/measure/measure-1.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-2-ref.mscx b/mtest/libmscore/measure/measure-2-ref.mscx index 9bf8f7685a239..b46ecef772c7f 100644 --- a/mtest/libmscore/measure/measure-2-ref.mscx +++ b/mtest/libmscore/measure/measure-2-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-2.mscx b/mtest/libmscore/measure/measure-2.mscx index 0c886bcbd1ebe..07b3a53a9b84c 100644 --- a/mtest/libmscore/measure/measure-2.mscx +++ b/mtest/libmscore/measure/measure-2.mscx @@ -1,5 +1,5 @@ - + 2.0.0 06ce77e diff --git a/mtest/libmscore/measure/measure-3-ref.mscx b/mtest/libmscore/measure/measure-3-ref.mscx index ac462f9f38894..fba0cd57165ff 100644 --- a/mtest/libmscore/measure/measure-3-ref.mscx +++ b/mtest/libmscore/measure/measure-3-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-3.mscx b/mtest/libmscore/measure/measure-3.mscx index 767f60923e43a..dacee6fec4918 100644 --- a/mtest/libmscore/measure/measure-3.mscx +++ b/mtest/libmscore/measure/measure-3.mscx @@ -1,5 +1,5 @@ - + 2.0.0 Unknown diff --git a/mtest/libmscore/measure/measure-4-ref.mscx b/mtest/libmscore/measure/measure-4-ref.mscx index 5a0270ec66f08..03be948a81b77 100644 --- a/mtest/libmscore/measure/measure-4-ref.mscx +++ b/mtest/libmscore/measure/measure-4-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-4.mscx b/mtest/libmscore/measure/measure-4.mscx index 54bbc2df2c378..25511e5c7af6c 100644 --- a/mtest/libmscore/measure/measure-4.mscx +++ b/mtest/libmscore/measure/measure-4.mscx @@ -1,5 +1,5 @@ - + 2.0.0 Unknown diff --git a/mtest/libmscore/measure/measure-5-ref.mscx b/mtest/libmscore/measure/measure-5-ref.mscx index 110c93950fa84..42203bcdab063 100644 --- a/mtest/libmscore/measure/measure-5-ref.mscx +++ b/mtest/libmscore/measure/measure-5-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-6-ref.mscx b/mtest/libmscore/measure/measure-6-ref.mscx index b09c291434c75..efa6d6aec8705 100644 --- a/mtest/libmscore/measure/measure-6-ref.mscx +++ b/mtest/libmscore/measure/measure-6-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-6.mscx b/mtest/libmscore/measure/measure-6.mscx index 236f6082e8443..cf22998bc0cce 100644 --- a/mtest/libmscore/measure/measure-6.mscx +++ b/mtest/libmscore/measure/measure-6.mscx @@ -1,5 +1,5 @@ - + 2.0.0 Unknown diff --git a/mtest/libmscore/measure/measure-7-ref.mscx b/mtest/libmscore/measure/measure-7-ref.mscx index 376ce2e026192..359e78efc42c8 100644 --- a/mtest/libmscore/measure/measure-7-ref.mscx +++ b/mtest/libmscore/measure/measure-7-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-7.mscx b/mtest/libmscore/measure/measure-7.mscx index 767f60923e43a..dacee6fec4918 100644 --- a/mtest/libmscore/measure/measure-7.mscx +++ b/mtest/libmscore/measure/measure-7.mscx @@ -1,5 +1,5 @@ - + 2.0.0 Unknown diff --git a/mtest/libmscore/measure/measure-8-ref.mscx b/mtest/libmscore/measure/measure-8-ref.mscx index f90af3381f25f..d6071b81b687e 100644 --- a/mtest/libmscore/measure/measure-8-ref.mscx +++ b/mtest/libmscore/measure/measure-8-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-8.mscx b/mtest/libmscore/measure/measure-8.mscx index 5816b75e6e5a9..78b5b7073d9e9 100644 --- a/mtest/libmscore/measure/measure-8.mscx +++ b/mtest/libmscore/measure/measure-8.mscx @@ -1,5 +1,5 @@ - + 2.0.0 Unknown diff --git a/mtest/libmscore/measure/measure-9-ref.mscx b/mtest/libmscore/measure/measure-9-ref.mscx index 30e805adcb085..4fa52ad5f9359 100644 --- a/mtest/libmscore/measure/measure-9-ref.mscx +++ b/mtest/libmscore/measure/measure-9-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-9.mscx b/mtest/libmscore/measure/measure-9.mscx index 236f6082e8443..cf22998bc0cce 100644 --- a/mtest/libmscore/measure/measure-9.mscx +++ b/mtest/libmscore/measure/measure-9.mscx @@ -1,5 +1,5 @@ - + 2.0.0 Unknown diff --git a/mtest/libmscore/measure/measure-insert_bf_clef-2-ref.mscx b/mtest/libmscore/measure/measure-insert_bf_clef-2-ref.mscx index 4ac538bb80cc7..25db7c6ca4ca1 100644 --- a/mtest/libmscore/measure/measure-insert_bf_clef-2-ref.mscx +++ b/mtest/libmscore/measure/measure-insert_bf_clef-2-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-insert_bf_clef-ref.mscx b/mtest/libmscore/measure/measure-insert_bf_clef-ref.mscx index 904cc083b4ee5..59f6e07c31e3c 100644 --- a/mtest/libmscore/measure/measure-insert_bf_clef-ref.mscx +++ b/mtest/libmscore/measure/measure-insert_bf_clef-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-insert_bf_clef.mscx b/mtest/libmscore/measure/measure-insert_bf_clef.mscx index dcb33d55dc3e3..7797de941e4fd 100644 --- a/mtest/libmscore/measure/measure-insert_bf_clef.mscx +++ b/mtest/libmscore/measure/measure-insert_bf_clef.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-insert_bf_key-2-ref.mscx b/mtest/libmscore/measure/measure-insert_bf_key-2-ref.mscx index d55bf4ec24d2a..3a46c29acd742 100644 --- a/mtest/libmscore/measure/measure-insert_bf_key-2-ref.mscx +++ b/mtest/libmscore/measure/measure-insert_bf_key-2-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-insert_bf_key-ref.mscx b/mtest/libmscore/measure/measure-insert_bf_key-ref.mscx index 073f31fde2f0b..11b0204ac33c3 100644 --- a/mtest/libmscore/measure/measure-insert_bf_key-ref.mscx +++ b/mtest/libmscore/measure/measure-insert_bf_key-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/measure/measure-insert_bf_key.mscx b/mtest/libmscore/measure/measure-insert_bf_key.mscx index 9390750047604..717a1159562e4 100644 --- a/mtest/libmscore/measure/measure-insert_bf_key.mscx +++ b/mtest/libmscore/measure/measure-insert_bf_key.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midi/testBaroqueOrnaments.mscx b/mtest/libmscore/midi/testBaroqueOrnaments.mscx index dac9e7f5f883a..94a194bddcf77 100644 --- a/mtest/libmscore/midi/testBaroqueOrnaments.mscx +++ b/mtest/libmscore/midi/testBaroqueOrnaments.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midi/testGlissando-71826.mscx b/mtest/libmscore/midi/testGlissando-71826.mscx index b30ecba6c171f..5bd56cf7be56e 100644 --- a/mtest/libmscore/midi/testGlissando-71826.mscx +++ b/mtest/libmscore/midi/testGlissando-71826.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midi/testGlissando.mscx b/mtest/libmscore/midi/testGlissando.mscx index a94960281fc7a..c87a3f66b0855 100644 --- a/mtest/libmscore/midi/testGlissando.mscx +++ b/mtest/libmscore/midi/testGlissando.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midi/testGraceBefore.mscx b/mtest/libmscore/midi/testGraceBefore.mscx index 27a3f6c47ac1a..744fc046c2712 100644 --- a/mtest/libmscore/midi/testGraceBefore.mscx +++ b/mtest/libmscore/midi/testGraceBefore.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midi/testOrnaments.mscx b/mtest/libmscore/midi/testOrnaments.mscx index 70fe90b4c79a4..7cab9182e2aca 100644 --- a/mtest/libmscore/midi/testOrnaments.mscx +++ b/mtest/libmscore/midi/testOrnaments.mscx @@ -1,5 +1,5 @@ - + 2.1.0 3543170 diff --git a/mtest/libmscore/midi/testPedal.mscx b/mtest/libmscore/midi/testPedal.mscx index 4b0ceef260892..cec577e3ed394 100644 --- a/mtest/libmscore/midi/testPedal.mscx +++ b/mtest/libmscore/midi/testPedal.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midi/testSwing16thDots.mscx b/mtest/libmscore/midi/testSwing16thDots.mscx index c0a1d6472044b..7e3ad53af808a 100644 --- a/mtest/libmscore/midi/testSwing16thDots.mscx +++ b/mtest/libmscore/midi/testSwing16thDots.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwing16thSimple.mscx b/mtest/libmscore/midi/testSwing16thSimple.mscx index 126a24b27fbcd..748f09de91ae5 100644 --- a/mtest/libmscore/midi/testSwing16thSimple.mscx +++ b/mtest/libmscore/midi/testSwing16thSimple.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwing16thTies.mscx b/mtest/libmscore/midi/testSwing16thTies.mscx index 1f61492886b74..5080d83137d0c 100644 --- a/mtest/libmscore/midi/testSwing16thTies.mscx +++ b/mtest/libmscore/midi/testSwing16thTies.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwing16thTriplets.mscx b/mtest/libmscore/midi/testSwing16thTriplets.mscx index 838298e69f639..0a4761c28bbae 100644 --- a/mtest/libmscore/midi/testSwing16thTriplets.mscx +++ b/mtest/libmscore/midi/testSwing16thTriplets.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwing8thDots.mscx b/mtest/libmscore/midi/testSwing8thDots.mscx index 87968112dab44..41be6d87f9de0 100644 --- a/mtest/libmscore/midi/testSwing8thDots.mscx +++ b/mtest/libmscore/midi/testSwing8thDots.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwing8thSimple.mscx b/mtest/libmscore/midi/testSwing8thSimple.mscx index cc9d36176868f..99f2b3904ce3b 100644 --- a/mtest/libmscore/midi/testSwing8thSimple.mscx +++ b/mtest/libmscore/midi/testSwing8thSimple.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwing8thTies.mscx b/mtest/libmscore/midi/testSwing8thTies.mscx index 31bf5d15df86c..345b1c7deb8d8 100644 --- a/mtest/libmscore/midi/testSwing8thTies.mscx +++ b/mtest/libmscore/midi/testSwing8thTies.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwing8thTriplets.mscx b/mtest/libmscore/midi/testSwing8thTriplets.mscx index c6a75316ec829..7590effaf431b 100644 --- a/mtest/libmscore/midi/testSwing8thTriplets.mscx +++ b/mtest/libmscore/midi/testSwing8thTriplets.mscx @@ -1,5 +1,5 @@ - + 2.0.0 diff --git a/mtest/libmscore/midi/testSwingOdd.mscx b/mtest/libmscore/midi/testSwingOdd.mscx index 2ed3fd17840b2..e0fe5c1101400 100644 --- a/mtest/libmscore/midi/testSwingOdd.mscx +++ b/mtest/libmscore/midi/testSwingOdd.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwingPickup.mscx b/mtest/libmscore/midi/testSwingPickup.mscx index 546d6106fa8ae..95e5f694fc8f0 100644 --- a/mtest/libmscore/midi/testSwingPickup.mscx +++ b/mtest/libmscore/midi/testSwingPickup.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwingStyleText.mscx b/mtest/libmscore/midi/testSwingStyleText.mscx index d7ff270588a24..f033982780b9b 100644 --- a/mtest/libmscore/midi/testSwingStyleText.mscx +++ b/mtest/libmscore/midi/testSwingStyleText.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testSwingTexts.mscx b/mtest/libmscore/midi/testSwingTexts.mscx index 25f57a1561a77..75819f2162c9b 100644 --- a/mtest/libmscore/midi/testSwingTexts.mscx +++ b/mtest/libmscore/midi/testSwingTexts.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/midi/testTieTrill.mscx b/mtest/libmscore/midi/testTieTrill.mscx index 10c81223d0018..2ec2c35b8eb5b 100644 --- a/mtest/libmscore/midi/testTieTrill.mscx +++ b/mtest/libmscore/midi/testTieTrill.mscx @@ -1,5 +1,5 @@ - + 2.1.0 3543170 diff --git a/mtest/libmscore/midi/testTrillTempos.mscx b/mtest/libmscore/midi/testTrillTempos.mscx index d197226f3f32c..ac436c3201a95 100644 --- a/mtest/libmscore/midi/testTrillTempos.mscx +++ b/mtest/libmscore/midi/testTrillTempos.mscx @@ -1,5 +1,5 @@ - + 2.1.0 3543170 diff --git a/mtest/libmscore/midimapping/test14-ref.mscx b/mtest/libmscore/midimapping/test14-ref.mscx index c7fc940aa9d10..5dc5b5253e030 100644 --- a/mtest/libmscore/midimapping/test14-ref.mscx +++ b/mtest/libmscore/midimapping/test14-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midimapping/test15-ref.mscx b/mtest/libmscore/midimapping/test15-ref.mscx index cd61abbf44613..406a688054e12 100644 --- a/mtest/libmscore/midimapping/test15-ref.mscx +++ b/mtest/libmscore/midimapping/test15-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midimapping/test16-ref.mscx b/mtest/libmscore/midimapping/test16-ref.mscx index 00a9784784b23..c590ba4698fab 100644 --- a/mtest/libmscore/midimapping/test16-ref.mscx +++ b/mtest/libmscore/midimapping/test16-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midimapping/test17-ref.mscx b/mtest/libmscore/midimapping/test17-ref.mscx index 04ad348849ef5..c5d7ee289a1b7 100644 --- a/mtest/libmscore/midimapping/test17-ref.mscx +++ b/mtest/libmscore/midimapping/test17-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midimapping/test18-ref.mscx b/mtest/libmscore/midimapping/test18-ref.mscx index b2c587de1387b..d12326a653379 100755 --- a/mtest/libmscore/midimapping/test18-ref.mscx +++ b/mtest/libmscore/midimapping/test18-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/midimapping/test1withDrums.mscx b/mtest/libmscore/midimapping/test1withDrums.mscx index 2dd6aed54e071..77cb9eca9697a 100644 --- a/mtest/libmscore/midimapping/test1withDrums.mscx +++ b/mtest/libmscore/midimapping/test1withDrums.mscx @@ -1,5 +1,5 @@ - + line diff --git a/mtest/libmscore/midimapping/test1withoutDrums.mscx b/mtest/libmscore/midimapping/test1withoutDrums.mscx index b2849dea4f817..a441f71e21416 100644 --- a/mtest/libmscore/midimapping/test1withoutDrums.mscx +++ b/mtest/libmscore/midimapping/test1withoutDrums.mscx @@ -1,5 +1,5 @@ - + line diff --git a/mtest/libmscore/midimapping/test2.mscx b/mtest/libmscore/midimapping/test2.mscx index 75d249d3cd38c..cb428621ee208 100644 --- a/mtest/libmscore/midimapping/test2.mscx +++ b/mtest/libmscore/midimapping/test2.mscx @@ -1,5 +1,5 @@ - + line diff --git a/mtest/libmscore/midimapping/test3withMapping.mscx b/mtest/libmscore/midimapping/test3withMapping.mscx index 6b5ac0c820613..8845dbbb949ca 100644 --- a/mtest/libmscore/midimapping/test3withMapping.mscx +++ b/mtest/libmscore/midimapping/test3withMapping.mscx @@ -1,5 +1,5 @@ - + 0 @@ -280,7 +280,7 @@ 2 - + Voice diff --git a/mtest/libmscore/midimapping/test3withoutMapping.mscx b/mtest/libmscore/midimapping/test3withoutMapping.mscx index 45899343af8e4..24835b62e5c17 100644 --- a/mtest/libmscore/midimapping/test3withoutMapping.mscx +++ b/mtest/libmscore/midimapping/test3withoutMapping.mscx @@ -1,5 +1,5 @@ - + 0 @@ -272,7 +272,7 @@ - + Voice diff --git a/mtest/libmscore/midimapping/test6-ref.mscx b/mtest/libmscore/midimapping/test6-ref.mscx index 6d587c6778807..1c73cb50ad940 100644 --- a/mtest/libmscore/midimapping/test6-ref.mscx +++ b/mtest/libmscore/midimapping/test6-ref.mscx @@ -1,5 +1,5 @@ - + line diff --git a/mtest/libmscore/midimapping/test7-ref.mscx b/mtest/libmscore/midimapping/test7-ref.mscx index 7f938b5569329..7b3e94ef01f87 100644 --- a/mtest/libmscore/midimapping/test7-ref.mscx +++ b/mtest/libmscore/midimapping/test7-ref.mscx @@ -1,5 +1,5 @@ - + 0 @@ -272,7 +272,7 @@ - + Voice diff --git a/mtest/libmscore/midimapping/test8-ref.mscx b/mtest/libmscore/midimapping/test8-ref.mscx index b2849dea4f817..a441f71e21416 100644 --- a/mtest/libmscore/midimapping/test8-ref.mscx +++ b/mtest/libmscore/midimapping/test8-ref.mscx @@ -1,5 +1,5 @@ - + line diff --git a/mtest/libmscore/midimapping/test9-ref.mscx b/mtest/libmscore/midimapping/test9-ref.mscx index df8fa0167c4cf..70ed56c747733 100644 --- a/mtest/libmscore/midimapping/test9-ref.mscx +++ b/mtest/libmscore/midimapping/test9-ref.mscx @@ -1,5 +1,5 @@ - + line diff --git a/mtest/libmscore/note/empty.mscx b/mtest/libmscore/note/empty.mscx index 3be5f9413646f..cd0e3c06625fb 100644 --- a/mtest/libmscore/note/empty.mscx +++ b/mtest/libmscore/note/empty.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/grace-ref.mscx b/mtest/libmscore/note/grace-ref.mscx index debf4ccc068cb..14ede6ac289d3 100644 --- a/mtest/libmscore/note/grace-ref.mscx +++ b/mtest/libmscore/note/grace-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/grace.mscx b/mtest/libmscore/note/grace.mscx index 55a9095c3a509..e89fa39574bf7 100644 --- a/mtest/libmscore/note/grace.mscx +++ b/mtest/libmscore/note/grace.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/notelimits-ref.mscx b/mtest/libmscore/note/notelimits-ref.mscx index c0639ec5839c1..69bb16347e051 100644 --- a/mtest/libmscore/note/notelimits-ref.mscx +++ b/mtest/libmscore/note/notelimits-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/tpc-ref.mscx b/mtest/libmscore/note/tpc-ref.mscx index 961d7c010204f..8ef391201748a 100644 --- a/mtest/libmscore/note/tpc-ref.mscx +++ b/mtest/libmscore/note/tpc-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/tpc-transpose-ref.mscx b/mtest/libmscore/note/tpc-transpose-ref.mscx index f8573003697de..ed22df4daac57 100644 --- a/mtest/libmscore/note/tpc-transpose-ref.mscx +++ b/mtest/libmscore/note/tpc-transpose-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/tpc-transpose.mscx b/mtest/libmscore/note/tpc-transpose.mscx index 2b3c478f8d91d..6c73e8d9af3f5 100644 --- a/mtest/libmscore/note/tpc-transpose.mscx +++ b/mtest/libmscore/note/tpc-transpose.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/tpc-transpose2-ref.mscx b/mtest/libmscore/note/tpc-transpose2-ref.mscx index a55ff783c5733..820411aaa7205 100644 --- a/mtest/libmscore/note/tpc-transpose2-ref.mscx +++ b/mtest/libmscore/note/tpc-transpose2-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/tpc-transpose2.mscx b/mtest/libmscore/note/tpc-transpose2.mscx index 524a2798145b3..f5fa3689730c5 100644 --- a/mtest/libmscore/note/tpc-transpose2.mscx +++ b/mtest/libmscore/note/tpc-transpose2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/note/tpc.mscx b/mtest/libmscore/note/tpc.mscx index 5d7a8bb52b24c..03fd8488041d2 100644 --- a/mtest/libmscore/note/tpc.mscx +++ b/mtest/libmscore/note/tpc.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-54346-parts.mscx b/mtest/libmscore/parts/part-54346-parts.mscx index b1dc2b2caa7d2..7fe33bf8a9a2c 100644 --- a/mtest/libmscore/parts/part-54346-parts.mscx +++ b/mtest/libmscore/parts/part-54346-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-54346.mscx b/mtest/libmscore/parts/part-54346.mscx index 37d4adad41614..17be7a52258dd 100644 --- a/mtest/libmscore/parts/part-54346.mscx +++ b/mtest/libmscore/parts/part-54346.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-all-appendmeasures.mscx b/mtest/libmscore/parts/part-all-appendmeasures.mscx index b58732e3e0b21..588ead8ec4625 100644 --- a/mtest/libmscore/parts/part-all-appendmeasures.mscx +++ b/mtest/libmscore/parts/part-all-appendmeasures.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-all-insertmeasures.mscx b/mtest/libmscore/parts/part-all-insertmeasures.mscx index deacc0a5c77fb..a04c772ba831d 100644 --- a/mtest/libmscore/parts/part-all-insertmeasures.mscx +++ b/mtest/libmscore/parts/part-all-insertmeasures.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-all-parts.mscx b/mtest/libmscore/parts/part-all-parts.mscx index 9fa947bc7fd6d..6602193129d21 100644 --- a/mtest/libmscore/parts/part-all-parts.mscx +++ b/mtest/libmscore/parts/part-all-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-all-uappendmeasures.mscx b/mtest/libmscore/parts/part-all-uappendmeasures.mscx index 9fa947bc7fd6d..6602193129d21 100644 --- a/mtest/libmscore/parts/part-all-uappendmeasures.mscx +++ b/mtest/libmscore/parts/part-all-uappendmeasures.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-all-uinsertmeasures.mscx b/mtest/libmscore/parts/part-all-uinsertmeasures.mscx index 9fa947bc7fd6d..6602193129d21 100644 --- a/mtest/libmscore/parts/part-all-uinsertmeasures.mscx +++ b/mtest/libmscore/parts/part-all-uinsertmeasures.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-all.mscx b/mtest/libmscore/parts/part-all.mscx index 4123684790d03..c3afc743e7684 100644 --- a/mtest/libmscore/parts/part-all.mscx +++ b/mtest/libmscore/parts/part-all.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath-add.mscx b/mtest/libmscore/parts/part-breath-add.mscx index c02f6731589a0..9fb712986bf8e 100644 --- a/mtest/libmscore/parts/part-breath-add.mscx +++ b/mtest/libmscore/parts/part-breath-add.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath-del.mscx b/mtest/libmscore/parts/part-breath-del.mscx index 395992495fa77..316fad6c06827 100644 --- a/mtest/libmscore/parts/part-breath-del.mscx +++ b/mtest/libmscore/parts/part-breath-del.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath-parts.mscx b/mtest/libmscore/parts/part-breath-parts.mscx index 1304a10598786..82c861954b530 100644 --- a/mtest/libmscore/parts/part-breath-parts.mscx +++ b/mtest/libmscore/parts/part-breath-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath-uadd.mscx b/mtest/libmscore/parts/part-breath-uadd.mscx index 395992495fa77..316fad6c06827 100644 --- a/mtest/libmscore/parts/part-breath-uadd.mscx +++ b/mtest/libmscore/parts/part-breath-uadd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath-udel.mscx b/mtest/libmscore/parts/part-breath-udel.mscx index 366cbc41ea9a6..0444b54681e6e 100644 --- a/mtest/libmscore/parts/part-breath-udel.mscx +++ b/mtest/libmscore/parts/part-breath-udel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath-uradd.mscx b/mtest/libmscore/parts/part-breath-uradd.mscx index f6d2b4ba9810e..69e54a18b2f90 100644 --- a/mtest/libmscore/parts/part-breath-uradd.mscx +++ b/mtest/libmscore/parts/part-breath-uradd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath-urdel.mscx b/mtest/libmscore/parts/part-breath-urdel.mscx index 395992495fa77..316fad6c06827 100644 --- a/mtest/libmscore/parts/part-breath-urdel.mscx +++ b/mtest/libmscore/parts/part-breath-urdel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-breath.mscx b/mtest/libmscore/parts/part-breath.mscx index 25efb099889c8..ec8123fbbadee 100644 --- a/mtest/libmscore/parts/part-breath.mscx +++ b/mtest/libmscore/parts/part-breath.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline-add.mscx b/mtest/libmscore/parts/part-chordline-add.mscx index 2dfdbea3eb316..648b506c9eae0 100644 --- a/mtest/libmscore/parts/part-chordline-add.mscx +++ b/mtest/libmscore/parts/part-chordline-add.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline-del.mscx b/mtest/libmscore/parts/part-chordline-del.mscx index 0e0b627671848..490baf7a06825 100644 --- a/mtest/libmscore/parts/part-chordline-del.mscx +++ b/mtest/libmscore/parts/part-chordline-del.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline-parts.mscx b/mtest/libmscore/parts/part-chordline-parts.mscx index 85033e37a9d80..212e9b89b1cfb 100644 --- a/mtest/libmscore/parts/part-chordline-parts.mscx +++ b/mtest/libmscore/parts/part-chordline-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline-uadd.mscx b/mtest/libmscore/parts/part-chordline-uadd.mscx index 395992495fa77..316fad6c06827 100644 --- a/mtest/libmscore/parts/part-chordline-uadd.mscx +++ b/mtest/libmscore/parts/part-chordline-uadd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline-udel.mscx b/mtest/libmscore/parts/part-chordline-udel.mscx index d12cb0603545c..6e9ff6764a467 100644 --- a/mtest/libmscore/parts/part-chordline-udel.mscx +++ b/mtest/libmscore/parts/part-chordline-udel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline-uradd.mscx b/mtest/libmscore/parts/part-chordline-uradd.mscx index 556e8dd325d31..a974e8a9eb38a 100644 --- a/mtest/libmscore/parts/part-chordline-uradd.mscx +++ b/mtest/libmscore/parts/part-chordline-uradd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline-urdel.mscx b/mtest/libmscore/parts/part-chordline-urdel.mscx index 0e0b627671848..490baf7a06825 100644 --- a/mtest/libmscore/parts/part-chordline-urdel.mscx +++ b/mtest/libmscore/parts/part-chordline-urdel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-chordline.mscx b/mtest/libmscore/parts/part-chordline.mscx index 4bb58eb3630a9..69f596ca597da 100644 --- a/mtest/libmscore/parts/part-chordline.mscx +++ b/mtest/libmscore/parts/part-chordline.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-empty-parts.mscx b/mtest/libmscore/parts/part-empty-parts.mscx index ad81f4dec8838..5bd23054b2db2 100644 --- a/mtest/libmscore/parts/part-empty-parts.mscx +++ b/mtest/libmscore/parts/part-empty-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-empty.mscx b/mtest/libmscore/parts/part-empty.mscx index 52cd606b063d9..e59d6574823aa 100644 --- a/mtest/libmscore/parts/part-empty.mscx +++ b/mtest/libmscore/parts/part-empty.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering-add.mscx b/mtest/libmscore/parts/part-fingering-add.mscx index 70b9f1df4b6b8..23a70fed3e629 100644 --- a/mtest/libmscore/parts/part-fingering-add.mscx +++ b/mtest/libmscore/parts/part-fingering-add.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering-del.mscx b/mtest/libmscore/parts/part-fingering-del.mscx index 54d0bd372a247..bb1adb77cc2b3 100644 --- a/mtest/libmscore/parts/part-fingering-del.mscx +++ b/mtest/libmscore/parts/part-fingering-del.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering-parts.mscx b/mtest/libmscore/parts/part-fingering-parts.mscx index 9815ab2c3b156..002ac20a45125 100644 --- a/mtest/libmscore/parts/part-fingering-parts.mscx +++ b/mtest/libmscore/parts/part-fingering-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering-uadd.mscx b/mtest/libmscore/parts/part-fingering-uadd.mscx index 395992495fa77..316fad6c06827 100644 --- a/mtest/libmscore/parts/part-fingering-uadd.mscx +++ b/mtest/libmscore/parts/part-fingering-uadd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering-udel.mscx b/mtest/libmscore/parts/part-fingering-udel.mscx index 226f6c40a1aba..26855b3aa6985 100644 --- a/mtest/libmscore/parts/part-fingering-udel.mscx +++ b/mtest/libmscore/parts/part-fingering-udel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering-uradd.mscx b/mtest/libmscore/parts/part-fingering-uradd.mscx index d6fa4a18b848a..f89586e47aedf 100644 --- a/mtest/libmscore/parts/part-fingering-uradd.mscx +++ b/mtest/libmscore/parts/part-fingering-uradd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering-urdel.mscx b/mtest/libmscore/parts/part-fingering-urdel.mscx index 54d0bd372a247..bb1adb77cc2b3 100644 --- a/mtest/libmscore/parts/part-fingering-urdel.mscx +++ b/mtest/libmscore/parts/part-fingering-urdel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-fingering.mscx b/mtest/libmscore/parts/part-fingering.mscx index 363cc09b3f0d6..fc44dcbdca097 100644 --- a/mtest/libmscore/parts/part-fingering.mscx +++ b/mtest/libmscore/parts/part-fingering.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-image-parts.mscx b/mtest/libmscore/parts/part-image-parts.mscx index 756a9af87d552..8fac58f2453ed 100644 --- a/mtest/libmscore/parts/part-image-parts.mscx +++ b/mtest/libmscore/parts/part-image-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-image.mscx b/mtest/libmscore/parts/part-image.mscx index 52f239de2b287..cdf4c6ef0b712 100644 --- a/mtest/libmscore/parts/part-image.mscx +++ b/mtest/libmscore/parts/part-image.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol-add.mscx b/mtest/libmscore/parts/part-symbol-add.mscx index dd9c6bb587325..f982d1ddbb518 100644 --- a/mtest/libmscore/parts/part-symbol-add.mscx +++ b/mtest/libmscore/parts/part-symbol-add.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol-del.mscx b/mtest/libmscore/parts/part-symbol-del.mscx index 51cdc63b800e3..55b1db7a24aa6 100644 --- a/mtest/libmscore/parts/part-symbol-del.mscx +++ b/mtest/libmscore/parts/part-symbol-del.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol-parts.mscx b/mtest/libmscore/parts/part-symbol-parts.mscx index 286adaeab93dd..0166debd94fb7 100644 --- a/mtest/libmscore/parts/part-symbol-parts.mscx +++ b/mtest/libmscore/parts/part-symbol-parts.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol-uadd.mscx b/mtest/libmscore/parts/part-symbol-uadd.mscx index 395992495fa77..316fad6c06827 100644 --- a/mtest/libmscore/parts/part-symbol-uadd.mscx +++ b/mtest/libmscore/parts/part-symbol-uadd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol-udel.mscx b/mtest/libmscore/parts/part-symbol-udel.mscx index 0ede14c3a6b56..8ad51f5f513eb 100644 --- a/mtest/libmscore/parts/part-symbol-udel.mscx +++ b/mtest/libmscore/parts/part-symbol-udel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol-uradd.mscx b/mtest/libmscore/parts/part-symbol-uradd.mscx index c23c33f5ada18..8d3bc7ed1968a 100644 --- a/mtest/libmscore/parts/part-symbol-uradd.mscx +++ b/mtest/libmscore/parts/part-symbol-uradd.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol-urdel.mscx b/mtest/libmscore/parts/part-symbol-urdel.mscx index 51cdc63b800e3..55b1db7a24aa6 100644 --- a/mtest/libmscore/parts/part-symbol-urdel.mscx +++ b/mtest/libmscore/parts/part-symbol-urdel.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/part-symbol.mscx b/mtest/libmscore/parts/part-symbol.mscx index d0b7483614164..9360341652681 100644 --- a/mtest/libmscore/parts/part-symbol.mscx +++ b/mtest/libmscore/parts/part-symbol.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/partStyle-score-ref.mscx b/mtest/libmscore/parts/partStyle-score-ref.mscx index c3d77cf34958f..4a395a4d78697 100644 --- a/mtest/libmscore/parts/partStyle-score-ref.mscx +++ b/mtest/libmscore/parts/partStyle-score-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/partStyle-score-reload-ref.mscx b/mtest/libmscore/parts/partStyle-score-reload-ref.mscx index a6129e87e5ab4..8cfb7637afcfc 100644 --- a/mtest/libmscore/parts/partStyle-score-reload-ref.mscx +++ b/mtest/libmscore/parts/partStyle-score-reload-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/partStyle-score-reload.mscx b/mtest/libmscore/parts/partStyle-score-reload.mscx index 9b604d7c78659..c44c9311cff54 100644 --- a/mtest/libmscore/parts/partStyle-score-reload.mscx +++ b/mtest/libmscore/parts/partStyle-score-reload.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/parts/partStyle.mscx b/mtest/libmscore/parts/partStyle.mscx index 39ba66490541d..3e61a40aaa5e6 100644 --- a/mtest/libmscore/parts/partStyle.mscx +++ b/mtest/libmscore/parts/partStyle.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/plugins/testTextStyle-ref.mscx b/mtest/libmscore/plugins/testTextStyle-ref.mscx index cbe315ca98bd7..9eb09a6a72deb 100644 --- a/mtest/libmscore/plugins/testTextStyle-ref.mscx +++ b/mtest/libmscore/plugins/testTextStyle-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/plugins/testTextStyle.mscx b/mtest/libmscore/plugins/testTextStyle.mscx index 9be1879936d6b..380966f5b1efd 100644 --- a/mtest/libmscore/plugins/testTextStyle.mscx +++ b/mtest/libmscore/plugins/testTextStyle.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat01.mscx b/mtest/libmscore/repeat/repeat01.mscx index c2d7b2d5f083b..c79be8539b591 100644 --- a/mtest/libmscore/repeat/repeat01.mscx +++ b/mtest/libmscore/repeat/repeat01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat02.mscx b/mtest/libmscore/repeat/repeat02.mscx index 59b9954ce5f20..ad83c61132b3c 100644 --- a/mtest/libmscore/repeat/repeat02.mscx +++ b/mtest/libmscore/repeat/repeat02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat03.mscx b/mtest/libmscore/repeat/repeat03.mscx index 394f4e493a462..992efe4432747 100644 --- a/mtest/libmscore/repeat/repeat03.mscx +++ b/mtest/libmscore/repeat/repeat03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat04.mscx b/mtest/libmscore/repeat/repeat04.mscx index cba5ecf28f5d7..46ca0d48da555 100644 --- a/mtest/libmscore/repeat/repeat04.mscx +++ b/mtest/libmscore/repeat/repeat04.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat05.mscx b/mtest/libmscore/repeat/repeat05.mscx index 645ae170b771c..7ab48fdedb23c 100644 --- a/mtest/libmscore/repeat/repeat05.mscx +++ b/mtest/libmscore/repeat/repeat05.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat06.mscx b/mtest/libmscore/repeat/repeat06.mscx index c3590912f6cc4..054f95493e71a 100644 --- a/mtest/libmscore/repeat/repeat06.mscx +++ b/mtest/libmscore/repeat/repeat06.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/repeat/repeat07.mscx b/mtest/libmscore/repeat/repeat07.mscx index 03046ab656b82..4be9b901171dc 100644 --- a/mtest/libmscore/repeat/repeat07.mscx +++ b/mtest/libmscore/repeat/repeat07.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat08.mscx b/mtest/libmscore/repeat/repeat08.mscx index 9933aa95f82e4..d463ea87264b4 100644 --- a/mtest/libmscore/repeat/repeat08.mscx +++ b/mtest/libmscore/repeat/repeat08.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat09.mscx b/mtest/libmscore/repeat/repeat09.mscx index 203e91ce68ac2..8bcdd82538a9e 100644 --- a/mtest/libmscore/repeat/repeat09.mscx +++ b/mtest/libmscore/repeat/repeat09.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/repeat/repeat10.mscx b/mtest/libmscore/repeat/repeat10.mscx index 344536034050a..a560791fb0ced 100644 --- a/mtest/libmscore/repeat/repeat10.mscx +++ b/mtest/libmscore/repeat/repeat10.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/repeat/repeat11.mscx b/mtest/libmscore/repeat/repeat11.mscx index 888590c148c6d..330c6af8ee2cc 100644 --- a/mtest/libmscore/repeat/repeat11.mscx +++ b/mtest/libmscore/repeat/repeat11.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/repeat/repeat12.mscx b/mtest/libmscore/repeat/repeat12.mscx index ef6c43aacd010..06d8d36140f97 100644 --- a/mtest/libmscore/repeat/repeat12.mscx +++ b/mtest/libmscore/repeat/repeat12.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/repeat/repeat13.mscx b/mtest/libmscore/repeat/repeat13.mscx index 3ded0b7643205..2e716e10da8cd 100644 --- a/mtest/libmscore/repeat/repeat13.mscx +++ b/mtest/libmscore/repeat/repeat13.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat14.mscx b/mtest/libmscore/repeat/repeat14.mscx index e921751059791..8124ac79401fd 100644 --- a/mtest/libmscore/repeat/repeat14.mscx +++ b/mtest/libmscore/repeat/repeat14.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat15.mscx b/mtest/libmscore/repeat/repeat15.mscx index 3f945a277b933..a0ca34e435aeb 100644 --- a/mtest/libmscore/repeat/repeat15.mscx +++ b/mtest/libmscore/repeat/repeat15.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat16.mscx b/mtest/libmscore/repeat/repeat16.mscx index 684070968bc27..b3dafbab2d6d3 100644 --- a/mtest/libmscore/repeat/repeat16.mscx +++ b/mtest/libmscore/repeat/repeat16.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat18.mscx b/mtest/libmscore/repeat/repeat18.mscx index e7f00e13e5268..9ab8f860b8001 100644 --- a/mtest/libmscore/repeat/repeat18.mscx +++ b/mtest/libmscore/repeat/repeat18.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat19.mscx b/mtest/libmscore/repeat/repeat19.mscx index 8301af1821efd..af2d75dbf7c9c 100644 --- a/mtest/libmscore/repeat/repeat19.mscx +++ b/mtest/libmscore/repeat/repeat19.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat20.mscx b/mtest/libmscore/repeat/repeat20.mscx index c768911b1d7b7..6680aff70ce10 100644 --- a/mtest/libmscore/repeat/repeat20.mscx +++ b/mtest/libmscore/repeat/repeat20.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat21.mscx b/mtest/libmscore/repeat/repeat21.mscx index 232e24861d7e4..dc363d4fa8fff 100644 --- a/mtest/libmscore/repeat/repeat21.mscx +++ b/mtest/libmscore/repeat/repeat21.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat22.mscx b/mtest/libmscore/repeat/repeat22.mscx index 9cd88a44b9e44..96dfdffda3c44 100644 --- a/mtest/libmscore/repeat/repeat22.mscx +++ b/mtest/libmscore/repeat/repeat22.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat23.mscx b/mtest/libmscore/repeat/repeat23.mscx index 4c00a880d9aa6..475a009566bf6 100644 --- a/mtest/libmscore/repeat/repeat23.mscx +++ b/mtest/libmscore/repeat/repeat23.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat24.mscx b/mtest/libmscore/repeat/repeat24.mscx index 9687dbe57b157..38cebe4a19b2f 100644 --- a/mtest/libmscore/repeat/repeat24.mscx +++ b/mtest/libmscore/repeat/repeat24.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat25.mscx b/mtest/libmscore/repeat/repeat25.mscx index 3042dbc67c043..04fd143832534 100644 --- a/mtest/libmscore/repeat/repeat25.mscx +++ b/mtest/libmscore/repeat/repeat25.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat26.mscx b/mtest/libmscore/repeat/repeat26.mscx index 8daf07bde3263..79c2e050e8bbf 100644 --- a/mtest/libmscore/repeat/repeat26.mscx +++ b/mtest/libmscore/repeat/repeat26.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat27.mscx b/mtest/libmscore/repeat/repeat27.mscx index 9c50758c3948a..b00dd215fd5d0 100644 --- a/mtest/libmscore/repeat/repeat27.mscx +++ b/mtest/libmscore/repeat/repeat27.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat28.mscx b/mtest/libmscore/repeat/repeat28.mscx index e3b71f41a17b8..d5c763737c716 100644 --- a/mtest/libmscore/repeat/repeat28.mscx +++ b/mtest/libmscore/repeat/repeat28.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat29.mscx b/mtest/libmscore/repeat/repeat29.mscx index a409ddacb7ef3..ce2c3f849002c 100644 --- a/mtest/libmscore/repeat/repeat29.mscx +++ b/mtest/libmscore/repeat/repeat29.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat30.mscx b/mtest/libmscore/repeat/repeat30.mscx index bedbbb8d318a3..4f9719a24b170 100644 --- a/mtest/libmscore/repeat/repeat30.mscx +++ b/mtest/libmscore/repeat/repeat30.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat31.mscx b/mtest/libmscore/repeat/repeat31.mscx index 721204202fffa..9932f1beed76b 100644 --- a/mtest/libmscore/repeat/repeat31.mscx +++ b/mtest/libmscore/repeat/repeat31.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat32.mscx b/mtest/libmscore/repeat/repeat32.mscx index 316449c74e44a..0b92854e93071 100644 --- a/mtest/libmscore/repeat/repeat32.mscx +++ b/mtest/libmscore/repeat/repeat32.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat33.mscx b/mtest/libmscore/repeat/repeat33.mscx index 290a44c6783da..c00c1281e4b61 100644 --- a/mtest/libmscore/repeat/repeat33.mscx +++ b/mtest/libmscore/repeat/repeat33.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat34.mscx b/mtest/libmscore/repeat/repeat34.mscx index d738cd8b017e9..fdd12bf7a85e4 100644 --- a/mtest/libmscore/repeat/repeat34.mscx +++ b/mtest/libmscore/repeat/repeat34.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat35.mscx b/mtest/libmscore/repeat/repeat35.mscx index 0eb17b4571bfe..b86fa6d8a7cd3 100644 --- a/mtest/libmscore/repeat/repeat35.mscx +++ b/mtest/libmscore/repeat/repeat35.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat36.mscx b/mtest/libmscore/repeat/repeat36.mscx index d982a29c39ac3..f6dd97846db07 100644 --- a/mtest/libmscore/repeat/repeat36.mscx +++ b/mtest/libmscore/repeat/repeat36.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/repeat/repeat37.mscx b/mtest/libmscore/repeat/repeat37.mscx index 39480aef4556b..cb1f7b2dff794 100644 --- a/mtest/libmscore/repeat/repeat37.mscx +++ b/mtest/libmscore/repeat/repeat37.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter1.mscx b/mtest/libmscore/selectionfilter/selectionfilter1.mscx index bf6554ba0ddf1..19b9164296260 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter1.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter1.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter10.mscx b/mtest/libmscore/selectionfilter/selectionfilter10.mscx index bc22dcf215124..ee10b27dcf955 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter10.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter10.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter11.mscx b/mtest/libmscore/selectionfilter/selectionfilter11.mscx index 04312a9749823..1cafb45264c00 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter11.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter11.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter12.mscx b/mtest/libmscore/selectionfilter/selectionfilter12.mscx index 6374480a35604..4ab00da0f4aac 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter12.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter12.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter13.mscx b/mtest/libmscore/selectionfilter/selectionfilter13.mscx index 54a66b448d232..d330ea0021829 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter13.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter13.mscx @@ -1,5 +1,5 @@ - + 0 @@ -55,8 +55,8 @@ Violin - Violin - Vln. + Violin + Vln. Violin 55 103 @@ -109,9 +109,6 @@ G G - - 0 - 4 4 @@ -131,11 +128,9 @@ 16 - 480 0 - 960 quarter @@ -150,11 +145,9 @@ 13 - 1440 0 - 1920 normal 1 diff --git a/mtest/libmscore/selectionfilter/selectionfilter14.mscx b/mtest/libmscore/selectionfilter/selectionfilter14.mscx index 0dfe86888f769..bae23e4dc9ba8 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter14.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter14.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter15.mscx b/mtest/libmscore/selectionfilter/selectionfilter15.mscx index 679e8abe919fd..f3b7fa83a9e7c 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter15.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter15.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter16.mscx b/mtest/libmscore/selectionfilter/selectionfilter16.mscx index 93d8d83e4cb56..896583f040477 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter16.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter16.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter17.mscx b/mtest/libmscore/selectionfilter/selectionfilter17.mscx index 4a1dcafdb317b..c63244a0c2144 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter17.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter17.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter18.mscx b/mtest/libmscore/selectionfilter/selectionfilter18.mscx index 0c52d28df6daa..ce6a9f63b7ab1 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter18.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter18.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter2.mscx b/mtest/libmscore/selectionfilter/selectionfilter2.mscx index 62c98323111ff..178a9c8da7a31 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter2.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter3.mscx b/mtest/libmscore/selectionfilter/selectionfilter3.mscx index ceea2ffd0b991..920906bce137a 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter3.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter3.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter4.mscx b/mtest/libmscore/selectionfilter/selectionfilter4.mscx index aa73a025c4324..5a917f51f175c 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter4.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter4.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter5.mscx b/mtest/libmscore/selectionfilter/selectionfilter5.mscx index 41ff2aced7429..e27859bdf762c 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter5.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter5.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter6.mscx b/mtest/libmscore/selectionfilter/selectionfilter6.mscx index b70737382b33f..ba452006ddef8 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter6.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter6.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter7.mscx b/mtest/libmscore/selectionfilter/selectionfilter7.mscx index f120f8c595b6f..7bb445ba7c8e2 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter7.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter7.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter8.mscx b/mtest/libmscore/selectionfilter/selectionfilter8.mscx index 929dc47fd904c..1b83b507dc9d1 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter8.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter8.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionfilter/selectionfilter9.mscx b/mtest/libmscore/selectionfilter/selectionfilter9.mscx index e3dec26a3576b..f3590a95f0715 100644 --- a/mtest/libmscore/selectionfilter/selectionfilter9.mscx +++ b/mtest/libmscore/selectionfilter/selectionfilter9.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete01.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete01.mscx index 2c78ef4f62892..2967f949646a9 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete01.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete02.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete02.mscx index c377a4210a47f..211a9e4b7f5be 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete02.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete03-ref.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete03-ref.mscx index eb5bf01e59dfb..9cf36c1c0c6b3 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete03-ref.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete03.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete03.mscx index 14d715300e761..5dd5487dca2d7 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete03.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete04-ref.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete04-ref.mscx index 52f621315bf55..0a69f2a7ea896 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete04-ref.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete04.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete04.mscx index 14d715300e761..5dd5487dca2d7 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete04.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete04.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete05-ref.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete05-ref.mscx index 3f3d9d993bfd9..cc200cb638794 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete05-ref.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete05-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/selectionrangedelete/selectionrangedelete05.mscx b/mtest/libmscore/selectionrangedelete/selectionrangedelete05.mscx index 0b23ca0f17d78..4ed418891d45e 100644 --- a/mtest/libmscore/selectionrangedelete/selectionrangedelete05.mscx +++ b/mtest/libmscore/selectionrangedelete/selectionrangedelete05.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning01-ref.mscx b/mtest/libmscore/spanners/glissando-cloning01-ref.mscx index f11c8b0530689..e7ec97cc00534 100644 --- a/mtest/libmscore/spanners/glissando-cloning01-ref.mscx +++ b/mtest/libmscore/spanners/glissando-cloning01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning01.mscx b/mtest/libmscore/spanners/glissando-cloning01.mscx index d12a788b580e3..4220bac2d4eae 100644 --- a/mtest/libmscore/spanners/glissando-cloning01.mscx +++ b/mtest/libmscore/spanners/glissando-cloning01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning02-ref.mscx b/mtest/libmscore/spanners/glissando-cloning02-ref.mscx index 45871219a8082..72fc9e85a05a8 100644 --- a/mtest/libmscore/spanners/glissando-cloning02-ref.mscx +++ b/mtest/libmscore/spanners/glissando-cloning02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning02.mscx b/mtest/libmscore/spanners/glissando-cloning02.mscx index af5e6262a9ec3..5fba5dd27c88c 100644 --- a/mtest/libmscore/spanners/glissando-cloning02.mscx +++ b/mtest/libmscore/spanners/glissando-cloning02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning03-ref.mscx b/mtest/libmscore/spanners/glissando-cloning03-ref.mscx index 147ec6e66cc96..2fee10d15d69f 100644 --- a/mtest/libmscore/spanners/glissando-cloning03-ref.mscx +++ b/mtest/libmscore/spanners/glissando-cloning03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning03.mscx b/mtest/libmscore/spanners/glissando-cloning03.mscx index 7798eb117c044..e015627e777f6 100644 --- a/mtest/libmscore/spanners/glissando-cloning03.mscx +++ b/mtest/libmscore/spanners/glissando-cloning03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning04-ref.mscx b/mtest/libmscore/spanners/glissando-cloning04-ref.mscx index 93cca9657a61d..d20a2fe8b0a85 100644 --- a/mtest/libmscore/spanners/glissando-cloning04-ref.mscx +++ b/mtest/libmscore/spanners/glissando-cloning04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-cloning04.mscx b/mtest/libmscore/spanners/glissando-cloning04.mscx index 823daae9cd902..0bd84b6f39519 100644 --- a/mtest/libmscore/spanners/glissando-cloning04.mscx +++ b/mtest/libmscore/spanners/glissando-cloning04.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-crossstaff01-ref.mscx b/mtest/libmscore/spanners/glissando-crossstaff01-ref.mscx index 6e3220b23299c..75ef9457e7f01 100644 --- a/mtest/libmscore/spanners/glissando-crossstaff01-ref.mscx +++ b/mtest/libmscore/spanners/glissando-crossstaff01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-crossstaff01.mscx b/mtest/libmscore/spanners/glissando-crossstaff01.mscx index c438aad4cf4ee..4071e01aff9a0 100644 --- a/mtest/libmscore/spanners/glissando-crossstaff01.mscx +++ b/mtest/libmscore/spanners/glissando-crossstaff01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-graces01-ref.mscx b/mtest/libmscore/spanners/glissando-graces01-ref.mscx index db625f7be6ff4..4e2319ad2fbe1 100644 --- a/mtest/libmscore/spanners/glissando-graces01-ref.mscx +++ b/mtest/libmscore/spanners/glissando-graces01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando-graces01.mscx b/mtest/libmscore/spanners/glissando-graces01.mscx index 43cf1d11c99a0..d886483c62758 100644 --- a/mtest/libmscore/spanners/glissando-graces01.mscx +++ b/mtest/libmscore/spanners/glissando-graces01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando01-ref.mscx b/mtest/libmscore/spanners/glissando01-ref.mscx index fc6e426e860a3..ebd70c4105939 100644 --- a/mtest/libmscore/spanners/glissando01-ref.mscx +++ b/mtest/libmscore/spanners/glissando01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/glissando01.mscx b/mtest/libmscore/spanners/glissando01.mscx index b387effbc76a5..97b877ddd0153 100644 --- a/mtest/libmscore/spanners/glissando01.mscx +++ b/mtest/libmscore/spanners/glissando01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline01-ref.mscx b/mtest/libmscore/spanners/lyricsline01-ref.mscx index dd845d213b07f..3c4e7ba7742eb 100644 --- a/mtest/libmscore/spanners/lyricsline01-ref.mscx +++ b/mtest/libmscore/spanners/lyricsline01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline01.mscx b/mtest/libmscore/spanners/lyricsline01.mscx index 3c78229f253ac..5bb63b5fbc88b 100644 --- a/mtest/libmscore/spanners/lyricsline01.mscx +++ b/mtest/libmscore/spanners/lyricsline01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline02-ref.mscx b/mtest/libmscore/spanners/lyricsline02-ref.mscx index 9d19ed66d368f..04033b066a5b3 100644 --- a/mtest/libmscore/spanners/lyricsline02-ref.mscx +++ b/mtest/libmscore/spanners/lyricsline02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline02.mscx b/mtest/libmscore/spanners/lyricsline02.mscx index e039dc551242c..0fc456bb412ab 100644 --- a/mtest/libmscore/spanners/lyricsline02.mscx +++ b/mtest/libmscore/spanners/lyricsline02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline03-ref.mscx b/mtest/libmscore/spanners/lyricsline03-ref.mscx index 7283769ebb844..49d67d52f78d7 100644 --- a/mtest/libmscore/spanners/lyricsline03-ref.mscx +++ b/mtest/libmscore/spanners/lyricsline03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline03.mscx b/mtest/libmscore/spanners/lyricsline03.mscx index d2cd35967c0e6..4fff18823a1c2 100644 --- a/mtest/libmscore/spanners/lyricsline03.mscx +++ b/mtest/libmscore/spanners/lyricsline03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline04-ref.mscx b/mtest/libmscore/spanners/lyricsline04-ref.mscx index 8f2461e84be64..8bef04679a4b5 100644 --- a/mtest/libmscore/spanners/lyricsline04-ref.mscx +++ b/mtest/libmscore/spanners/lyricsline04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline04.mscx b/mtest/libmscore/spanners/lyricsline04.mscx index 42581fad08b0e..ac5310f2fe758 100644 --- a/mtest/libmscore/spanners/lyricsline04.mscx +++ b/mtest/libmscore/spanners/lyricsline04.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline05-ref.mscx b/mtest/libmscore/spanners/lyricsline05-ref.mscx index c1747d09815eb..cb815d204b8aa 100644 --- a/mtest/libmscore/spanners/lyricsline05-ref.mscx +++ b/mtest/libmscore/spanners/lyricsline05-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline05.mscx b/mtest/libmscore/spanners/lyricsline05.mscx index b84da79589aaa..9beffa8ada12c 100644 --- a/mtest/libmscore/spanners/lyricsline05.mscx +++ b/mtest/libmscore/spanners/lyricsline05.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline06-ref.mscx b/mtest/libmscore/spanners/lyricsline06-ref.mscx index f59d60b749690..42c3162d32607 100644 --- a/mtest/libmscore/spanners/lyricsline06-ref.mscx +++ b/mtest/libmscore/spanners/lyricsline06-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/spanners/lyricsline06.mscx b/mtest/libmscore/spanners/lyricsline06.mscx index fa3d50c5f0268..b1929541a00c7 100644 --- a/mtest/libmscore/spanners/lyricsline06.mscx +++ b/mtest/libmscore/spanners/lyricsline06.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split01-ref.mscx b/mtest/libmscore/split/split01-ref.mscx index 3d3da24275972..be063fb053cdb 100644 --- a/mtest/libmscore/split/split01-ref.mscx +++ b/mtest/libmscore/split/split01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split01.mscx b/mtest/libmscore/split/split01.mscx index f0a8ee5bbf11d..341fa4b63fc03 100644 --- a/mtest/libmscore/split/split01.mscx +++ b/mtest/libmscore/split/split01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split02-ref.mscx b/mtest/libmscore/split/split02-ref.mscx index f92c67de910f9..9211ffe3d8ac2 100644 --- a/mtest/libmscore/split/split02-ref.mscx +++ b/mtest/libmscore/split/split02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split02.mscx b/mtest/libmscore/split/split02.mscx index fb108e649238e..098109b48f8a9 100644 --- a/mtest/libmscore/split/split02.mscx +++ b/mtest/libmscore/split/split02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split03-ref.mscx b/mtest/libmscore/split/split03-ref.mscx index d32164352e374..a3e6206932ecc 100644 --- a/mtest/libmscore/split/split03-ref.mscx +++ b/mtest/libmscore/split/split03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split03.mscx b/mtest/libmscore/split/split03.mscx index ce146ebdefc1e..7b717e0a7f26d 100644 --- a/mtest/libmscore/split/split03.mscx +++ b/mtest/libmscore/split/split03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split04-ref.mscx b/mtest/libmscore/split/split04-ref.mscx index ea28c7c78271b..aec4b5c00b194 100644 --- a/mtest/libmscore/split/split04-ref.mscx +++ b/mtest/libmscore/split/split04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split04.mscx b/mtest/libmscore/split/split04.mscx index 77682349ad922..0a3e717b2324b 100644 --- a/mtest/libmscore/split/split04.mscx +++ b/mtest/libmscore/split/split04.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split05-ref.mscx b/mtest/libmscore/split/split05-ref.mscx index 1a932d96c0d8c..771cce6b6037f 100644 --- a/mtest/libmscore/split/split05-ref.mscx +++ b/mtest/libmscore/split/split05-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split05.mscx b/mtest/libmscore/split/split05.mscx index 8feb2fb766c76..a90d622704e86 100644 --- a/mtest/libmscore/split/split05.mscx +++ b/mtest/libmscore/split/split05.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split06-ref.mscx b/mtest/libmscore/split/split06-ref.mscx index baaa249a39374..d3ecc8422d642 100644 --- a/mtest/libmscore/split/split06-ref.mscx +++ b/mtest/libmscore/split/split06-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split06.mscx b/mtest/libmscore/split/split06.mscx index 7ab3b79c99c2b..bf6ed59884e27 100644 --- a/mtest/libmscore/split/split06.mscx +++ b/mtest/libmscore/split/split06.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split07-ref.mscx b/mtest/libmscore/split/split07-ref.mscx index 9752d47c85408..1752a7765b767 100644 --- a/mtest/libmscore/split/split07-ref.mscx +++ b/mtest/libmscore/split/split07-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split07.mscx b/mtest/libmscore/split/split07.mscx index 9a0e5f287dd5c..bf5cc8d99975a 100644 --- a/mtest/libmscore/split/split07.mscx +++ b/mtest/libmscore/split/split07.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split08-ref.mscx b/mtest/libmscore/split/split08-ref.mscx index 7ec76f59c99d0..fba10518f4ca0 100644 --- a/mtest/libmscore/split/split08-ref.mscx +++ b/mtest/libmscore/split/split08-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/split/split08.mscx b/mtest/libmscore/split/split08.mscx index d5bdf52eb943a..87b409f88a1c8 100644 --- a/mtest/libmscore/split/split08.mscx +++ b/mtest/libmscore/split/split08.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff01-ref.mscx b/mtest/libmscore/splitstaff/splitstaff01-ref.mscx index ac41f1b11d0dc..8496cf3bd099e 100644 --- a/mtest/libmscore/splitstaff/splitstaff01-ref.mscx +++ b/mtest/libmscore/splitstaff/splitstaff01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff01.mscx b/mtest/libmscore/splitstaff/splitstaff01.mscx index 2d5b543928b1f..74c7aa0d9a3b7 100644 --- a/mtest/libmscore/splitstaff/splitstaff01.mscx +++ b/mtest/libmscore/splitstaff/splitstaff01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff02-ref.mscx b/mtest/libmscore/splitstaff/splitstaff02-ref.mscx index 3710d2e47f63b..c7373a769bc74 100644 --- a/mtest/libmscore/splitstaff/splitstaff02-ref.mscx +++ b/mtest/libmscore/splitstaff/splitstaff02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff02.mscx b/mtest/libmscore/splitstaff/splitstaff02.mscx index e70f885ce2aab..729e2f158f08f 100644 --- a/mtest/libmscore/splitstaff/splitstaff02.mscx +++ b/mtest/libmscore/splitstaff/splitstaff02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff03-ref.mscx b/mtest/libmscore/splitstaff/splitstaff03-ref.mscx index 593f1e4e8b70b..05916a0bb8bd6 100644 --- a/mtest/libmscore/splitstaff/splitstaff03-ref.mscx +++ b/mtest/libmscore/splitstaff/splitstaff03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff03.mscx b/mtest/libmscore/splitstaff/splitstaff03.mscx index 7671fac0aa798..5f9a1d2cb8dc9 100644 --- a/mtest/libmscore/splitstaff/splitstaff03.mscx +++ b/mtest/libmscore/splitstaff/splitstaff03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff04-ref.mscx b/mtest/libmscore/splitstaff/splitstaff04-ref.mscx index 7d01b451c01a6..fef3292910a20 100644 --- a/mtest/libmscore/splitstaff/splitstaff04-ref.mscx +++ b/mtest/libmscore/splitstaff/splitstaff04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/splitstaff/splitstaff05-ref.mscx b/mtest/libmscore/splitstaff/splitstaff05-ref.mscx index 4c85c8ece24f4..a1166a197f475 100644 --- a/mtest/libmscore/splitstaff/splitstaff05-ref.mscx +++ b/mtest/libmscore/splitstaff/splitstaff05-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig-02-ref.mscx b/mtest/libmscore/timesig/timesig-02-ref.mscx index a97389bb5720c..5ab1defe91a31 100644 --- a/mtest/libmscore/timesig/timesig-02-ref.mscx +++ b/mtest/libmscore/timesig/timesig-02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig-02.mscx b/mtest/libmscore/timesig/timesig-02.mscx index ae8bc767128e2..c300b49353a14 100644 --- a/mtest/libmscore/timesig/timesig-02.mscx +++ b/mtest/libmscore/timesig/timesig-02.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig-03-ref.mscx b/mtest/libmscore/timesig/timesig-03-ref.mscx index ccc8edee3feb2..d8c4048b6c811 100644 --- a/mtest/libmscore/timesig/timesig-03-ref.mscx +++ b/mtest/libmscore/timesig/timesig-03-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig-03.mscx b/mtest/libmscore/timesig/timesig-03.mscx index 5398aa34067c5..50ccd424153b7 100644 --- a/mtest/libmscore/timesig/timesig-03.mscx +++ b/mtest/libmscore/timesig/timesig-03.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig-04-ref.mscx b/mtest/libmscore/timesig/timesig-04-ref.mscx index 0244094440490..0d7f591fed1a3 100644 --- a/mtest/libmscore/timesig/timesig-04-ref.mscx +++ b/mtest/libmscore/timesig/timesig-04-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig-04.mscx b/mtest/libmscore/timesig/timesig-04.mscx index 1c5bd28bb9e2d..e49a443cb0409 100644 --- a/mtest/libmscore/timesig/timesig-04.mscx +++ b/mtest/libmscore/timesig/timesig-04.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3543170 diff --git a/mtest/libmscore/timesig/timesig01-ref.mscx b/mtest/libmscore/timesig/timesig01-ref.mscx index 75af92a5d2558..c093b0ccc8fc2 100644 --- a/mtest/libmscore/timesig/timesig01-ref.mscx +++ b/mtest/libmscore/timesig/timesig01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig01.mscx b/mtest/libmscore/timesig/timesig01.mscx index 48ee4be3e4a87..40a50867c0805 100644 --- a/mtest/libmscore/timesig/timesig01.mscx +++ b/mtest/libmscore/timesig/timesig01.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/timesig_78216.mscx b/mtest/libmscore/timesig/timesig_78216.mscx index ccc24adcc0709..d498302bdea82 100644 --- a/mtest/libmscore/timesig/timesig_78216.mscx +++ b/mtest/libmscore/timesig/timesig_78216.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/timesig/tst_timesig.cpp b/mtest/libmscore/timesig/tst_timesig.cpp index 2e8cb96e50366..b4291f272f9bf 100644 --- a/mtest/libmscore/timesig/tst_timesig.cpp +++ b/mtest/libmscore/timesig/tst_timesig.cpp @@ -80,7 +80,7 @@ void TestTimesig::timesig02() score->doLayout(); score->endCmd(); - QVERIFY(saveCompareScore(score, "timesig-02a.mscx", DIR + "timesig-02-ref.mscx")); + QVERIFY(saveCompareScore(score, "timesig-02.mscx", DIR + "timesig-02-ref.mscx")); delete score; } diff --git a/mtest/libmscore/tools/undoAddLineBreaks.mscx b/mtest/libmscore/tools/undoAddLineBreaks.mscx index c8082ea87e3cd..a60037d8ad94e 100644 --- a/mtest/libmscore/tools/undoAddLineBreaks.mscx +++ b/mtest/libmscore/tools/undoAddLineBreaks.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoAddLineBreaks01-ref.mscx b/mtest/libmscore/tools/undoAddLineBreaks01-ref.mscx index 605b7e9178548..883c42fdda2a6 100644 --- a/mtest/libmscore/tools/undoAddLineBreaks01-ref.mscx +++ b/mtest/libmscore/tools/undoAddLineBreaks01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoAddLineBreaks02-ref.mscx b/mtest/libmscore/tools/undoAddLineBreaks02-ref.mscx index 6aefadcd312b2..1afdf0f84769a 100644 --- a/mtest/libmscore/tools/undoAddLineBreaks02-ref.mscx +++ b/mtest/libmscore/tools/undoAddLineBreaks02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoChangeVoice.mscx b/mtest/libmscore/tools/undoChangeVoice.mscx index 2b659e23f5445..b653445637618 100644 --- a/mtest/libmscore/tools/undoChangeVoice.mscx +++ b/mtest/libmscore/tools/undoChangeVoice.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoChangeVoice01-ref.mscx b/mtest/libmscore/tools/undoChangeVoice01-ref.mscx index 37d2fbf7b13ad..de85fa117767d 100644 --- a/mtest/libmscore/tools/undoChangeVoice01-ref.mscx +++ b/mtest/libmscore/tools/undoChangeVoice01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoChangeVoice02-ref.mscx b/mtest/libmscore/tools/undoChangeVoice02-ref.mscx index 99e43b72813b4..5e26673556420 100644 --- a/mtest/libmscore/tools/undoChangeVoice02-ref.mscx +++ b/mtest/libmscore/tools/undoChangeVoice02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoExplode.mscx b/mtest/libmscore/tools/undoExplode.mscx index 0dbc01984a122..2c6aa03deb347 100644 --- a/mtest/libmscore/tools/undoExplode.mscx +++ b/mtest/libmscore/tools/undoExplode.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoExplode01-ref.mscx b/mtest/libmscore/tools/undoExplode01-ref.mscx index d02879375ad98..3ec22b5f3484d 100644 --- a/mtest/libmscore/tools/undoExplode01-ref.mscx +++ b/mtest/libmscore/tools/undoExplode01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoExplode02-ref.mscx b/mtest/libmscore/tools/undoExplode02-ref.mscx index 3913979f717dc..845fc1a258c43 100644 --- a/mtest/libmscore/tools/undoExplode02-ref.mscx +++ b/mtest/libmscore/tools/undoExplode02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoImplode.mscx b/mtest/libmscore/tools/undoImplode.mscx index b7d92c8c4ca16..5ca4632ea5e20 100644 --- a/mtest/libmscore/tools/undoImplode.mscx +++ b/mtest/libmscore/tools/undoImplode.mscx @@ -1,5 +1,5 @@ - + 2.0.0 cc98125 diff --git a/mtest/libmscore/tools/undoImplode01-ref.mscx b/mtest/libmscore/tools/undoImplode01-ref.mscx index 69f533e497cb5..195ccdc924dd4 100644 --- a/mtest/libmscore/tools/undoImplode01-ref.mscx +++ b/mtest/libmscore/tools/undoImplode01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoImplode02-ref.mscx b/mtest/libmscore/tools/undoImplode02-ref.mscx index 1c90be5a690f1..1d85c4617019a 100644 --- a/mtest/libmscore/tools/undoImplode02-ref.mscx +++ b/mtest/libmscore/tools/undoImplode02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoImplodeVoice.mscx b/mtest/libmscore/tools/undoImplodeVoice.mscx index fa79915681e12..d956a7411e711 100644 --- a/mtest/libmscore/tools/undoImplodeVoice.mscx +++ b/mtest/libmscore/tools/undoImplodeVoice.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoImplodeVoice01-ref.mscx b/mtest/libmscore/tools/undoImplodeVoice01-ref.mscx index 10f7bd4784ed4..6f9b647bc0de1 100644 --- a/mtest/libmscore/tools/undoImplodeVoice01-ref.mscx +++ b/mtest/libmscore/tools/undoImplodeVoice01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoImplodeVoice02-ref.mscx b/mtest/libmscore/tools/undoImplodeVoice02-ref.mscx index 2e889e45758f0..2f1af3af736be 100644 --- a/mtest/libmscore/tools/undoImplodeVoice02-ref.mscx +++ b/mtest/libmscore/tools/undoImplodeVoice02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoLockLineBreaks.mscx b/mtest/libmscore/tools/undoLockLineBreaks.mscx index 5ba4c4b84d959..d30d3f4b0f657 100644 --- a/mtest/libmscore/tools/undoLockLineBreaks.mscx +++ b/mtest/libmscore/tools/undoLockLineBreaks.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoLockLineBreaks01-ref.mscx b/mtest/libmscore/tools/undoLockLineBreaks01-ref.mscx index 74d0c32f30f81..608ca56e3166b 100644 --- a/mtest/libmscore/tools/undoLockLineBreaks01-ref.mscx +++ b/mtest/libmscore/tools/undoLockLineBreaks01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoLockLineBreaks02-ref.mscx b/mtest/libmscore/tools/undoLockLineBreaks02-ref.mscx index 78141ac944f88..628c7cba0e939 100644 --- a/mtest/libmscore/tools/undoLockLineBreaks02-ref.mscx +++ b/mtest/libmscore/tools/undoLockLineBreaks02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoRemoveLineBreaks.mscx b/mtest/libmscore/tools/undoRemoveLineBreaks.mscx index 605b7e9178548..883c42fdda2a6 100644 --- a/mtest/libmscore/tools/undoRemoveLineBreaks.mscx +++ b/mtest/libmscore/tools/undoRemoveLineBreaks.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoRemoveLineBreaks01-ref.mscx b/mtest/libmscore/tools/undoRemoveLineBreaks01-ref.mscx index c8082ea87e3cd..a60037d8ad94e 100644 --- a/mtest/libmscore/tools/undoRemoveLineBreaks01-ref.mscx +++ b/mtest/libmscore/tools/undoRemoveLineBreaks01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoRemoveLineBreaks02-ref.mscx b/mtest/libmscore/tools/undoRemoveLineBreaks02-ref.mscx index 9e5b07cab4098..2151886a2cdf5 100644 --- a/mtest/libmscore/tools/undoRemoveLineBreaks02-ref.mscx +++ b/mtest/libmscore/tools/undoRemoveLineBreaks02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceAlpha.mscx b/mtest/libmscore/tools/undoResequenceAlpha.mscx index cd5722acfdc36..664490e6e150b 100644 --- a/mtest/libmscore/tools/undoResequenceAlpha.mscx +++ b/mtest/libmscore/tools/undoResequenceAlpha.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceAlpha01-ref.mscx b/mtest/libmscore/tools/undoResequenceAlpha01-ref.mscx index 1de3496147180..380d5c3562a5e 100644 --- a/mtest/libmscore/tools/undoResequenceAlpha01-ref.mscx +++ b/mtest/libmscore/tools/undoResequenceAlpha01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceAlpha02-ref.mscx b/mtest/libmscore/tools/undoResequenceAlpha02-ref.mscx index a7c1f8fb98839..c5d3769c5c444 100644 --- a/mtest/libmscore/tools/undoResequenceAlpha02-ref.mscx +++ b/mtest/libmscore/tools/undoResequenceAlpha02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceMeasure.mscx b/mtest/libmscore/tools/undoResequenceMeasure.mscx index cd971e5355380..a8e23db09fc0b 100644 --- a/mtest/libmscore/tools/undoResequenceMeasure.mscx +++ b/mtest/libmscore/tools/undoResequenceMeasure.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceMeasure01-ref.mscx b/mtest/libmscore/tools/undoResequenceMeasure01-ref.mscx index 41b9aa3195941..4b1591bb7cbe0 100644 --- a/mtest/libmscore/tools/undoResequenceMeasure01-ref.mscx +++ b/mtest/libmscore/tools/undoResequenceMeasure01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceMeasure02-ref.mscx b/mtest/libmscore/tools/undoResequenceMeasure02-ref.mscx index 4b7f9beabcebf..2342cf013b1f7 100644 --- a/mtest/libmscore/tools/undoResequenceMeasure02-ref.mscx +++ b/mtest/libmscore/tools/undoResequenceMeasure02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceNumeric.mscx b/mtest/libmscore/tools/undoResequenceNumeric.mscx index 2f7de3c8435a5..830d44ca43b5d 100644 --- a/mtest/libmscore/tools/undoResequenceNumeric.mscx +++ b/mtest/libmscore/tools/undoResequenceNumeric.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceNumeric01-ref.mscx b/mtest/libmscore/tools/undoResequenceNumeric01-ref.mscx index 8c623b45c889a..88393db28c095 100644 --- a/mtest/libmscore/tools/undoResequenceNumeric01-ref.mscx +++ b/mtest/libmscore/tools/undoResequenceNumeric01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequenceNumeric02-ref.mscx b/mtest/libmscore/tools/undoResequenceNumeric02-ref.mscx index 5419e16dd9486..575229e5ed202 100644 --- a/mtest/libmscore/tools/undoResequenceNumeric02-ref.mscx +++ b/mtest/libmscore/tools/undoResequenceNumeric02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequencePart.mscx b/mtest/libmscore/tools/undoResequencePart.mscx index 031193b69e7b5..de22243949208 100644 --- a/mtest/libmscore/tools/undoResequencePart.mscx +++ b/mtest/libmscore/tools/undoResequencePart.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequencePart01-ref.mscx b/mtest/libmscore/tools/undoResequencePart01-ref.mscx index 6dc9e6063604a..e5dda184d74cc 100644 --- a/mtest/libmscore/tools/undoResequencePart01-ref.mscx +++ b/mtest/libmscore/tools/undoResequencePart01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoResequencePart02-ref.mscx b/mtest/libmscore/tools/undoResequencePart02-ref.mscx index 696383ac68c52..6a9b988f4233b 100644 --- a/mtest/libmscore/tools/undoResequencePart02-ref.mscx +++ b/mtest/libmscore/tools/undoResequencePart02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoSlashFill.mscx b/mtest/libmscore/tools/undoSlashFill.mscx index b26a66ada6f34..da2fb72445876 100644 --- a/mtest/libmscore/tools/undoSlashFill.mscx +++ b/mtest/libmscore/tools/undoSlashFill.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoSlashFill01-ref.mscx b/mtest/libmscore/tools/undoSlashFill01-ref.mscx index 18fab3a84cbfb..3c1092d1c379d 100644 --- a/mtest/libmscore/tools/undoSlashFill01-ref.mscx +++ b/mtest/libmscore/tools/undoSlashFill01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoSlashFill02-ref.mscx b/mtest/libmscore/tools/undoSlashFill02-ref.mscx index adfeb72120098..a31ed2a472f13 100644 --- a/mtest/libmscore/tools/undoSlashFill02-ref.mscx +++ b/mtest/libmscore/tools/undoSlashFill02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoSlashRhythm.mscx b/mtest/libmscore/tools/undoSlashRhythm.mscx index 59e29ca2e2ef1..166cf2d817db0 100644 --- a/mtest/libmscore/tools/undoSlashRhythm.mscx +++ b/mtest/libmscore/tools/undoSlashRhythm.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx b/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx index 51757cb7021f1..27eeddc5ff3a5 100644 --- a/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx +++ b/mtest/libmscore/tools/undoSlashRhythm01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tools/undoSlashRhythm02-ref.mscx b/mtest/libmscore/tools/undoSlashRhythm02-ref.mscx index 8a92401a1ddb5..92480be446d46 100644 --- a/mtest/libmscore/tools/undoSlashRhythm02-ref.mscx +++ b/mtest/libmscore/tools/undoSlashRhythm02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/transpose/undoDiatonicTranspose.mscx b/mtest/libmscore/transpose/undoDiatonicTranspose.mscx index a4508d7c155cb..5f8bcdb424159 100644 --- a/mtest/libmscore/transpose/undoDiatonicTranspose.mscx +++ b/mtest/libmscore/transpose/undoDiatonicTranspose.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/transpose/undoDiatonicTranspose01-ref.mscx b/mtest/libmscore/transpose/undoDiatonicTranspose01-ref.mscx index 0a6abf867eaf1..951f499005a14 100644 --- a/mtest/libmscore/transpose/undoDiatonicTranspose01-ref.mscx +++ b/mtest/libmscore/transpose/undoDiatonicTranspose01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/transpose/undoDiatonicTranspose02-ref.mscx b/mtest/libmscore/transpose/undoDiatonicTranspose02-ref.mscx index 1a51809b098b6..52dba0b4b4290 100644 --- a/mtest/libmscore/transpose/undoDiatonicTranspose02-ref.mscx +++ b/mtest/libmscore/transpose/undoDiatonicTranspose02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/transpose/undoTranspose.mscx b/mtest/libmscore/transpose/undoTranspose.mscx index bb32a03685875..c69e56f095a9e 100644 --- a/mtest/libmscore/transpose/undoTranspose.mscx +++ b/mtest/libmscore/transpose/undoTranspose.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/transpose/undoTranspose01-ref.mscx b/mtest/libmscore/transpose/undoTranspose01-ref.mscx index 67a75fee3de6f..08e11ba8c265c 100644 --- a/mtest/libmscore/transpose/undoTranspose01-ref.mscx +++ b/mtest/libmscore/transpose/undoTranspose01-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/transpose/undoTranspose02-ref.mscx b/mtest/libmscore/transpose/undoTranspose02-ref.mscx index f2a9a6e388202..fc97c164475d6 100644 --- a/mtest/libmscore/transpose/undoTranspose02-ref.mscx +++ b/mtest/libmscore/transpose/undoTranspose02-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tuplet/tuplet1-ref.mscx b/mtest/libmscore/tuplet/tuplet1-ref.mscx index b2f9c4201d484..4fb899dab42d0 100644 --- a/mtest/libmscore/tuplet/tuplet1-ref.mscx +++ b/mtest/libmscore/tuplet/tuplet1-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/libmscore/tuplet/tuplet1.mscx b/mtest/libmscore/tuplet/tuplet1.mscx index 079caf9749bdd..2d298800868fd 100644 --- a/mtest/libmscore/tuplet/tuplet1.mscx +++ b/mtest/libmscore/tuplet/tuplet1.mscx @@ -1,5 +1,5 @@ - + 2.0.0 3d55d86 diff --git a/mtest/scripting/s1.mscx b/mtest/scripting/s1.mscx index 0ba9c6d115565..0a6c4e012c403 100644 --- a/mtest/scripting/s1.mscx +++ b/mtest/scripting/s1.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/scripting/s2.mscx b/mtest/scripting/s2.mscx index cd95cee46efa8..922148169020f 100644 --- a/mtest/scripting/s2.mscx +++ b/mtest/scripting/s2.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/beam - multiple voices.ove-ref.mscx b/mtest/testoves/bdat/beam - multiple voices.ove-ref.mscx index b9299a0980379..7b9c7ddbbe2eb 100644 --- a/mtest/testoves/bdat/beam - multiple voices.ove-ref.mscx +++ b/mtest/testoves/bdat/beam - multiple voices.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/beam 2.ove-ref.mscx b/mtest/testoves/bdat/beam 2.ove-ref.mscx index d996bdcc32d60..47b755300e14a 100644 --- a/mtest/testoves/bdat/beam 2.ove-ref.mscx +++ b/mtest/testoves/bdat/beam 2.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/beam-George Winston - Joy.ove-ref.mscx b/mtest/testoves/bdat/beam-George Winston - Joy.ove-ref.mscx index 949b29f0b008a..c5bca87054b15 100644 --- a/mtest/testoves/bdat/beam-George Winston - Joy.ove-ref.mscx +++ b/mtest/testoves/bdat/beam-George Winston - Joy.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/beam.ove-ref.mscx b/mtest/testoves/bdat/beam.ove-ref.mscx index ba58af8ead1b1..29933b79f6979 100644 --- a/mtest/testoves/bdat/beam.ove-ref.mscx +++ b/mtest/testoves/bdat/beam.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/clef-2.ove-ref.mscx b/mtest/testoves/bdat/clef-2.ove-ref.mscx index b13dbc0c12f90..37b7f3929e6aa 100644 --- a/mtest/testoves/bdat/clef-2.ove-ref.mscx +++ b/mtest/testoves/bdat/clef-2.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/key.ove-ref.mscx b/mtest/testoves/bdat/key.ove-ref.mscx index 478ed72990188..5556b5504b04c 100644 --- a/mtest/testoves/bdat/key.ove-ref.mscx +++ b/mtest/testoves/bdat/key.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/lyric.ove-ref.mscx b/mtest/testoves/bdat/lyric.ove-ref.mscx index 7230e60377e6c..df27536616b62 100644 --- a/mtest/testoves/bdat/lyric.ove-ref.mscx +++ b/mtest/testoves/bdat/lyric.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-accidental.ove-ref.mscx b/mtest/testoves/bdat/note-accidental.ove-ref.mscx index 2eafcbe75e9c6..a152d0a8b16e1 100644 --- a/mtest/testoves/bdat/note-accidental.ove-ref.mscx +++ b/mtest/testoves/bdat/note-accidental.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-articulation-arpeggio.ove-ref.mscx b/mtest/testoves/bdat/note-articulation-arpeggio.ove-ref.mscx index dd47fc2457ea9..06f726fbf6d33 100644 --- a/mtest/testoves/bdat/note-articulation-arpeggio.ove-ref.mscx +++ b/mtest/testoves/bdat/note-articulation-arpeggio.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-articulation-tremolo.ove-ref.mscx b/mtest/testoves/bdat/note-articulation-tremolo.ove-ref.mscx index 801bc012cbdc5..0fa060249d966 100644 --- a/mtest/testoves/bdat/note-articulation-tremolo.ove-ref.mscx +++ b/mtest/testoves/bdat/note-articulation-tremolo.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-articulation-trill.ove-ref.mscx b/mtest/testoves/bdat/note-articulation-trill.ove-ref.mscx index 3918efdc2fc2b..90b471ec1a6da 100644 --- a/mtest/testoves/bdat/note-articulation-trill.ove-ref.mscx +++ b/mtest/testoves/bdat/note-articulation-trill.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-articulation-with-rest.ove-ref.mscx b/mtest/testoves/bdat/note-articulation-with-rest.ove-ref.mscx index 4a5dddc10a7a7..d86d9301e7a7f 100644 --- a/mtest/testoves/bdat/note-articulation-with-rest.ove-ref.mscx +++ b/mtest/testoves/bdat/note-articulation-with-rest.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-clef.ove-ref.mscx b/mtest/testoves/bdat/note-clef.ove-ref.mscx index 48fc31b9bfc02..353691461e721 100644 --- a/mtest/testoves/bdat/note-clef.ove-ref.mscx +++ b/mtest/testoves/bdat/note-clef.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-cross-staff 2.ove-ref.mscx b/mtest/testoves/bdat/note-cross-staff 2.ove-ref.mscx index 0d6eef5f08d4a..757b75c7590a3 100644 --- a/mtest/testoves/bdat/note-cross-staff 2.ove-ref.mscx +++ b/mtest/testoves/bdat/note-cross-staff 2.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-cross-staff.ove-ref.mscx b/mtest/testoves/bdat/note-cross-staff.ove-ref.mscx index 2409e82faed42..aa58920878157 100644 --- a/mtest/testoves/bdat/note-cross-staff.ove-ref.mscx +++ b/mtest/testoves/bdat/note-cross-staff.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-cue.ove-ref.mscx b/mtest/testoves/bdat/note-cue.ove-ref.mscx index de20f7cd2b841..dad6851aa7890 100644 --- a/mtest/testoves/bdat/note-cue.ove-ref.mscx +++ b/mtest/testoves/bdat/note-cue.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-dot.ove-ref.mscx b/mtest/testoves/bdat/note-dot.ove-ref.mscx index 1739ec8310b9a..1377b986dc643 100644 --- a/mtest/testoves/bdat/note-dot.ove-ref.mscx +++ b/mtest/testoves/bdat/note-dot.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-scale-c.ove-ref.mscx b/mtest/testoves/bdat/note-scale-c.ove-ref.mscx index 924c99db9825f..3c9cdaf569d68 100644 --- a/mtest/testoves/bdat/note-scale-c.ove-ref.mscx +++ b/mtest/testoves/bdat/note-scale-c.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-voices 5.ove-ref.mscx b/mtest/testoves/bdat/note-voices 5.ove-ref.mscx index 3741134b3648a..0916ab2081da4 100644 --- a/mtest/testoves/bdat/note-voices 5.ove-ref.mscx +++ b/mtest/testoves/bdat/note-voices 5.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-voices-3.ove-ref.mscx b/mtest/testoves/bdat/note-voices-3.ove-ref.mscx index 8b70563e2e408..728d9a8f1d336 100644 --- a/mtest/testoves/bdat/note-voices-3.ove-ref.mscx +++ b/mtest/testoves/bdat/note-voices-3.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-voices-4.ove-ref.mscx b/mtest/testoves/bdat/note-voices-4.ove-ref.mscx index a8321f55acd95..4c44c595aa332 100644 --- a/mtest/testoves/bdat/note-voices-4.ove-ref.mscx +++ b/mtest/testoves/bdat/note-voices-4.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note-voices.ove-ref.mscx b/mtest/testoves/bdat/note-voices.ove-ref.mscx index 5acbc5cdd137e..bd295a78aedf3 100644 --- a/mtest/testoves/bdat/note-voices.ove-ref.mscx +++ b/mtest/testoves/bdat/note-voices.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/note.ove-ref.mscx b/mtest/testoves/bdat/note.ove-ref.mscx index 2b1aab0221be3..84b4160be1292 100644 --- a/mtest/testoves/bdat/note.ove-ref.mscx +++ b/mtest/testoves/bdat/note.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/slur 2.ove-ref.mscx b/mtest/testoves/bdat/slur 2.ove-ref.mscx index cce8764467d15..3aefbefd3cb7b 100644 --- a/mtest/testoves/bdat/slur 2.ove-ref.mscx +++ b/mtest/testoves/bdat/slur 2.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/slur.ove-ref.mscx b/mtest/testoves/bdat/slur.ove-ref.mscx index 881a6b910a875..75d4f84cfc13c 100644 --- a/mtest/testoves/bdat/slur.ove-ref.mscx +++ b/mtest/testoves/bdat/slur.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/tie.ove-ref.mscx b/mtest/testoves/bdat/tie.ove-ref.mscx index 19d7dbc0985e6..62b24f578fd13 100644 --- a/mtest/testoves/bdat/tie.ove-ref.mscx +++ b/mtest/testoves/bdat/tie.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/tuplet 2.ove-ref.mscx b/mtest/testoves/bdat/tuplet 2.ove-ref.mscx index 3282bfd339a57..bf7e396944c3c 100644 --- a/mtest/testoves/bdat/tuplet 2.ove-ref.mscx +++ b/mtest/testoves/bdat/tuplet 2.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/tuplet-beam.ove-ref.mscx b/mtest/testoves/bdat/tuplet-beam.ove-ref.mscx index 86a63fe1d9c6d..7bd56f41662dd 100644 --- a/mtest/testoves/bdat/tuplet-beam.ove-ref.mscx +++ b/mtest/testoves/bdat/tuplet-beam.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/tuplet-rest-start 2.ove-ref.mscx b/mtest/testoves/bdat/tuplet-rest-start 2.ove-ref.mscx index bd0233702da98..c9f734eda02ba 100644 --- a/mtest/testoves/bdat/tuplet-rest-start 2.ove-ref.mscx +++ b/mtest/testoves/bdat/tuplet-rest-start 2.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/bdat/tuplet-rest-start.ove-ref.mscx b/mtest/testoves/bdat/tuplet-rest-start.ove-ref.mscx index e8888ac82037c..9d6a12cb913f5 100644 --- a/mtest/testoves/bdat/tuplet-rest-start.ove-ref.mscx +++ b/mtest/testoves/bdat/tuplet-rest-start.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/ove3/[ove3].Untitled.ove-ref.mscx b/mtest/testoves/ove3/[ove3].Untitled.ove-ref.mscx index f7014c963ed6f..917496f1cd4a0 100644 --- a/mtest/testoves/ove3/[ove3].Untitled.ove-ref.mscx +++ b/mtest/testoves/ove3/[ove3].Untitled.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/mtest/testoves/structure/cond - time 24.ove-ref.mscx b/mtest/testoves/structure/cond - time 24.ove-ref.mscx index d6c8d7cfecd5e..bc3993786979e 100644 --- a/mtest/testoves/structure/cond - time 24.ove-ref.mscx +++ b/mtest/testoves/structure/cond - time 24.ove-ref.mscx @@ -1,5 +1,5 @@ - + 0 diff --git a/share/templates/01-General/00-Blank.mscz b/share/templates/01-General/00-Blank.mscz index a1c4c4b978518..4e831a2d752c7 100644 Binary files a/share/templates/01-General/00-Blank.mscz and b/share/templates/01-General/00-Blank.mscz differ diff --git a/share/templates/01-General/01-Treble_Clef.mscz b/share/templates/01-General/01-Treble_Clef.mscz index d8903840bf996..9fdfb8ddee737 100644 Binary files a/share/templates/01-General/01-Treble_Clef.mscz and b/share/templates/01-General/01-Treble_Clef.mscz differ diff --git a/share/templates/01-General/02-Bass_Clef.mscz b/share/templates/01-General/02-Bass_Clef.mscz index 067cbeeb502df..a47d5402d17a9 100644 Binary files a/share/templates/01-General/02-Bass_Clef.mscz and b/share/templates/01-General/02-Bass_Clef.mscz differ diff --git a/share/templates/01-General/03-Grand_Staff.mscz b/share/templates/01-General/03-Grand_Staff.mscz index 850b2b2bd9b47..2aabb9ffd1e8f 100644 Binary files a/share/templates/01-General/03-Grand_Staff.mscz and b/share/templates/01-General/03-Grand_Staff.mscz differ diff --git a/share/templates/02-Choral/01-SATB.mscz b/share/templates/02-Choral/01-SATB.mscz index 41c39e8193921..456601517175e 100644 Binary files a/share/templates/02-Choral/01-SATB.mscz and b/share/templates/02-Choral/01-SATB.mscz differ diff --git a/share/templates/02-Choral/02-SATB_+_Organ.mscz b/share/templates/02-Choral/02-SATB_+_Organ.mscz index f3da471aa632e..6152f3582ab62 100644 Binary files a/share/templates/02-Choral/02-SATB_+_Organ.mscz and b/share/templates/02-Choral/02-SATB_+_Organ.mscz differ diff --git a/share/templates/02-Choral/03-SATB_+_Piano.mscz b/share/templates/02-Choral/03-SATB_+_Piano.mscz index efb1187b1858f..49f4e6375aa1d 100644 Binary files a/share/templates/02-Choral/03-SATB_+_Piano.mscz and b/share/templates/02-Choral/03-SATB_+_Piano.mscz differ diff --git a/share/templates/02-Choral/04-SATB_Closed_Score.mscz b/share/templates/02-Choral/04-SATB_Closed_Score.mscz index 61939274ffb71..bce3ec0e33a0e 100644 Binary files a/share/templates/02-Choral/04-SATB_Closed_Score.mscz and b/share/templates/02-Choral/04-SATB_Closed_Score.mscz differ diff --git a/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz b/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz index 6bfd3520d29ac..7564285e01a8b 100644 Binary files a/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz and b/share/templates/02-Choral/05-SATB_Closed_Score_+_Organ.mscz differ diff --git a/share/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz b/share/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz index 84e547167516d..883daa55ee54e 100644 Binary files a/share/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz and b/share/templates/02-Choral/06-SATB_Closed_Score_+_Piano.mscz differ diff --git a/share/templates/02-Choral/07-Voice_+_Piano.mscz b/share/templates/02-Choral/07-Voice_+_Piano.mscz index 3cc66108587d5..dd4cc9aaf9d1f 100644 Binary files a/share/templates/02-Choral/07-Voice_+_Piano.mscz and b/share/templates/02-Choral/07-Voice_+_Piano.mscz differ diff --git a/share/templates/02-Choral/08-Barbershop_Quartet.mscz b/share/templates/02-Choral/08-Barbershop_Quartet.mscz index dcd49f834e925..eb8c9d0bf2a2a 100644 Binary files a/share/templates/02-Choral/08-Barbershop_Quartet.mscz and b/share/templates/02-Choral/08-Barbershop_Quartet.mscz differ diff --git a/share/templates/02-Choral/09-Liturgical_Unmetrical.mscz b/share/templates/02-Choral/09-Liturgical_Unmetrical.mscz index 2600101907025..d2d766c0b2e21 100644 Binary files a/share/templates/02-Choral/09-Liturgical_Unmetrical.mscz and b/share/templates/02-Choral/09-Liturgical_Unmetrical.mscz differ diff --git a/share/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz b/share/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz index 507327911ec73..994c72e45feeb 100644 Binary files a/share/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz and b/share/templates/02-Choral/10-Liturgical_Unmetrical_+_Organ.mscz differ diff --git a/share/templates/03-Chamber_Music/01-String_Quartet.mscz b/share/templates/03-Chamber_Music/01-String_Quartet.mscz index 5909e291f106c..a6c8acb1b7925 100644 Binary files a/share/templates/03-Chamber_Music/01-String_Quartet.mscz and b/share/templates/03-Chamber_Music/01-String_Quartet.mscz differ diff --git a/share/templates/03-Chamber_Music/05-Brass_Quartet.mscz b/share/templates/03-Chamber_Music/05-Brass_Quartet.mscz index 39f46ce76d561..455746179b0f9 100644 Binary files a/share/templates/03-Chamber_Music/05-Brass_Quartet.mscz and b/share/templates/03-Chamber_Music/05-Brass_Quartet.mscz differ diff --git a/share/templates/03-Chamber_Music/06-Brass_Quintet.mscz b/share/templates/03-Chamber_Music/06-Brass_Quintet.mscz index aec35fff1eb3f..1677a09f9012b 100644 Binary files a/share/templates/03-Chamber_Music/06-Brass_Quintet.mscz and b/share/templates/03-Chamber_Music/06-Brass_Quintet.mscz differ diff --git a/share/templates/04-Solo/01-Guitar.mscz b/share/templates/04-Solo/01-Guitar.mscz index 7a60940e3d6b3..85e2848242dab 100644 Binary files a/share/templates/04-Solo/01-Guitar.mscz and b/share/templates/04-Solo/01-Guitar.mscz differ diff --git a/share/templates/04-Solo/02-Guitar_+_Tablature.mscz b/share/templates/04-Solo/02-Guitar_+_Tablature.mscz index 40d403cee45fc..53adb240d0879 100644 Binary files a/share/templates/04-Solo/02-Guitar_+_Tablature.mscz and b/share/templates/04-Solo/02-Guitar_+_Tablature.mscz differ diff --git a/share/templates/04-Solo/03-Guitar_Tablature.mscz b/share/templates/04-Solo/03-Guitar_Tablature.mscz index f08fc77df478c..1e1c76b626c0b 100644 Binary files a/share/templates/04-Solo/03-Guitar_Tablature.mscz and b/share/templates/04-Solo/03-Guitar_Tablature.mscz differ diff --git a/share/templates/04-Solo/04-Piano.mscz b/share/templates/04-Solo/04-Piano.mscz index 850b2b2bd9b47..22e337cc921c6 100644 Binary files a/share/templates/04-Solo/04-Piano.mscz and b/share/templates/04-Solo/04-Piano.mscz differ diff --git a/share/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz b/share/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz index e189a8ffaeb2e..f2cd1df03dc63 100644 Binary files a/share/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz and b/share/templates/05-Jazz/01-Jazz_Lead_Sheet.mscz differ diff --git a/share/templates/05-Jazz/02-Big_Band.mscz b/share/templates/05-Jazz/02-Big_Band.mscz index 7b6531a9c9586..84a81b2415590 100644 Binary files a/share/templates/05-Jazz/02-Big_Band.mscz and b/share/templates/05-Jazz/02-Big_Band.mscz differ diff --git a/share/templates/05-Jazz/03-Jazz_Combo.mscz b/share/templates/05-Jazz/03-Jazz_Combo.mscz index 90d0a9f718076..de1d354319987 100644 Binary files a/share/templates/05-Jazz/03-Jazz_Combo.mscz and b/share/templates/05-Jazz/03-Jazz_Combo.mscz differ diff --git a/share/templates/06-Popular/01-Rock_Band.mscz b/share/templates/06-Popular/01-Rock_Band.mscz index 0790f5a7105e7..baceaa0625b00 100644 Binary files a/share/templates/06-Popular/01-Rock_Band.mscz and b/share/templates/06-Popular/01-Rock_Band.mscz differ diff --git a/share/templates/08-Orchestral/01-Classical_Orchestra.mscz b/share/templates/08-Orchestral/01-Classical_Orchestra.mscz index 27e79c0dba498..242b330c7fdc9 100644 Binary files a/share/templates/08-Orchestral/01-Classical_Orchestra.mscz and b/share/templates/08-Orchestral/01-Classical_Orchestra.mscz differ diff --git a/share/templates/Create_New_Score.mscz b/share/templates/Create_New_Score.mscz index 29e9a2a541fdb..bec52aab60f6b 100644 Binary files a/share/templates/Create_New_Score.mscz and b/share/templates/Create_New_Score.mscz differ diff --git a/share/templates/My_First_Score.mscz b/share/templates/My_First_Score.mscz index 05115ab7f5325..1f59f972ff1cf 100644 Binary files a/share/templates/My_First_Score.mscz and b/share/templates/My_First_Score.mscz differ