Skip to content

Commit

Permalink
Merge pull request #23 from juyaolongpaul/figured-bass
Browse files Browse the repository at this point in the history
Fix the **kern translation for figure 6 with a backslash
  • Loading branch information
craigsapp authored Dec 4, 2019
2 parents d877dc7 + 511e946 commit 67e0a59
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/tool-musicxml2hum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1989,7 +1989,12 @@ string Tool_musicxml2hum::convertFiguredBassNumber(const xml_node& figure) {
if (suffix == "cross" || prefix == "cross") {
slash = "|";
} else if ((suffix == "backslash") || (prefix == "backslash")) {
slash = "\\";
if (number == "6")
{
accidental = "#";
slash = "|";
}
else slash = "\\";
} else if ((suffix == "slash") || (prefix == "slash")) {
slash = "/";
}
Expand Down

0 comments on commit 67e0a59

Please sign in to comment.