Skip to content
Snippets Groups Projects
Commit 900e8313 authored by Reinhold Kainhofer's avatar Reinhold Kainhofer
Browse files

Use light-heavy barline instead of light-light at end of piece

parent ba523d24
No related branches found
No related tags found
No related merge requests found
......@@ -383,10 +383,15 @@ sub parse_notes {
</barline>
';
} elsif ($barline =~ /^\/\/$/) {
print OUT ' <barline location="right">
<bar-style>light-light</bar-style>
$type = "light-light";
# At the end of a piece use a light-heavy barline
if ($notes eq "") {
$type = "light-heavy";
}
print OUT " <barline location=\"right\">
<bar-style>$type</bar-style>
</barline>
';
";
}
print OUT " </measure>\n";
reset_measure_attributes ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment