]> git.donarmstrong.com Git - lilypond.git/commitdiff
corrects typo in bar-line.scm
authorThomas Morley <thomasmorley65@gmail.com>
Sun, 27 Apr 2014 21:00:26 +0000 (23:00 +0200)
committerThomas Morley <thomasmorley65@gmail.com>
Tue, 6 May 2014 20:41:22 +0000 (22:41 +0200)
issue 3908

Missing space in (define-bar-line ":|]" ":|]" #f " |") caused bad
visual output of VoltaBracket.
Changed to (define-bar-line ":|]" ":|]" #f " | ")
The space added will cause that the SpanBar x-extent will be calculated
correctly to determine the gap between two VoltaBrackets.

scm/bar-line.scm

index 1f3c09d234e948e13e16e569603e909adfea0589..ff2d3f29b4a35d30cee581fa8f31ac096b06acb5 100644 (file)
@@ -1049,7 +1049,7 @@ of the volta brackets relative to the bar lines."
 (define-bar-line ":|." ":|." #f " |.")
 (define-bar-line ".|:" "|" ".|:" ".|")
 (define-bar-line "[|:" "|" "[|:" " |")
-(define-bar-line ":|]" ":|]" #f " |")
+(define-bar-line ":|]" ":|]" #f " | ")
 (define-bar-line ":|][|:" ":|]" "[|:" " |  |")
 (define-bar-line ".|:-||" "||" ".|:" ".|")