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
Branches
No related tags found
No related merge requests found
...@@ -383,10 +383,15 @@ sub parse_notes { ...@@ -383,10 +383,15 @@ sub parse_notes {
</barline> </barline>
'; ';
} elsif ($barline =~ /^\/\/$/) { } elsif ($barline =~ /^\/\/$/) {
print OUT ' <barline location="right"> $type = "light-light";
<bar-style>light-light</bar-style> # 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> </barline>
'; ";
} }
print OUT " </measure>\n"; print OUT " </measure>\n";
reset_measure_attributes (); reset_measure_attributes ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment