Skip to content

Commit

Permalink
Merge pull request #66 from gregchapman-dev/gregc/getSystemDecoration
Browse files Browse the repository at this point in the history
getSystemDecoration: 'brace' should be '{(' and ')}' not '[(' and ')]'.
  • Loading branch information
craigsapp authored Feb 5, 2023
2 parents 95f31d1 + cd610f6 commit 606d22b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/humlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101830,8 +101830,8 @@ string Tool_musicxml2hum::getSystemDecoration(xml_document& doc, HumGrid& grid,
output += "[(";
typeendings[number] = ")]";
} else if (g == "brace") {
output += "[(";
typeendings[number] = ")]";
output += "{(";
typeendings[number] = ")}";
} else {
cerr << "Unknown part grouping symbol: " << g << endl;
}
Expand Down
4 changes: 2 additions & 2 deletions src/tool-musicxml2hum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5198,8 +5198,8 @@ string Tool_musicxml2hum::getSystemDecoration(xml_document& doc, HumGrid& grid,
output += "[(";
typeendings[number] = ")]";
} else if (g == "brace") {
output += "[(";
typeendings[number] = ")]";
output += "{(";
typeendings[number] = ")}";
} else {
cerr << "Unknown part grouping symbol: " << g << endl;
}
Expand Down

0 comments on commit 606d22b

Please sign in to comment.