Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chords and Mensuration Sign's Orientation and Loc #3790

Merged
merged 10 commits into from
Sep 19, 2024
Prev Previous commit
Next Next commit
Add comment about how to get Num and Den into cmme
  • Loading branch information
martha-thomae committed Sep 19, 2024
commit 983132c22da25278c061e2ff545582f9576972dc
3 changes: 3 additions & 0 deletions src/iocmme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,9 @@ void CmmeInput::CreateMensuration(pugi::xml_node mensurationNode)
mensur->SetOrient(orient);

/// Mensuration/Number/Num to @num and Number/Den to @numbase
/// However, Number/Den cannot be entered in the CMME Editor.
/// It can only be added in the XML manually and imported into the CMME Editor,
/// where it won't render, but one can see it in the "Event Inspector."
pugi::xml_node numberNode = mensurationNode.child("Number");
if (numberNode != NULL) {
int numValue = this->ChildAsInt(numberNode, "Num");
Expand Down