diff options
author | Thomas Morley <thomasmorley65@gmail.com> | 2014-04-27 23:00:26 +0200 |
---|---|---|
committer | Thomas Morley <thomasmorley65@gmail.com> | 2014-05-06 22:41:22 +0200 |
commit | 5012705f74151e8c53f7bc41abf7094224d40ae2 (patch) | |
tree | 5137bcc739fac81e608aa6c2a9b3384e7782a63e | |
parent | 66aa1ea2486653a85857e863d24de2c3777189e3 (diff) |
corrects typo in bar-line.scm
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.
-rw-r--r-- | scm/bar-line.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scm/bar-line.scm b/scm/bar-line.scm index 1f3c09d234..ff2d3f29b4 100644 --- a/scm/bar-line.scm +++ b/scm/bar-line.scm @@ -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 ".|:-||" "||" ".|:" ".|") |