Skip to content

Commit

Permalink
Merge pull request rism-digital#3516 from rettinghaus/develop-musicxml
Browse files Browse the repository at this point in the history
MusicXML import: measure-numbering
  • Loading branch information
lpugin authored Sep 19, 2023
2 parents ff934e3 + 03b82b6 commit 4bead81
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/iomusxml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3701,6 +3701,10 @@ void MusicXmlInput::ReadMusicXmlPrint(pugi::xml_node node, Section *section)
Sb *sb = new Sb();
section->AddChild(sb);
}

if (std::string(node.child("measure-numbering").text().as_string()) == "none") {
m_doc->GetCurrentScoreDef()->SetMnumVisible(BOOLEAN_false);
}
}

bool MusicXmlInput::ReadMusicXmlBeamsAndTuplets(const pugi::xml_node &node, Layer *layer, bool isChord)
Expand Down

0 comments on commit 4bead81

Please sign in to comment.