]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/accidental-unbroken-tie-spacing.ly
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / accidental-unbroken-tie-spacing.ly
index 7f22cdf0baa539a006e486cc0233e746baa739f5..feae702a9ece933d4605d3fc64cc54a51a42fcf5 100644 (file)
@@ -1,14 +1,22 @@
 
 \header {
-texidoc = "Tied notes with accidentals do not cause problems with spacing."
+texidoc = "Space is allowed for the actual size of accidentals on tied notes."
 }
 
-\version "2.16.0"
-
-\relative c' {
+\version "2.19.21"
+\paper {ragged-right = ##t }
+\relative {
   \clef treble
   \time 3/4
-  c8 b2  <g b des f>8 ~ |
-  <g b des f>8
+  c'8 b2  <g b des f>8 ~ |
+  <g b des f>8 r
+  % Large accidental
+  \override Staff.Accidental.stencil =
+  #(lambda (g)
+     (let ((alt (ly:grob-property g 'alteration)))
+       (grob-interpret-markup g
+         (make-circle-markup (number->string alt)))))
+  bes4 ~ bes ~ | bes ~ bes bes ~ | \break
+  bes ~ bes bes
 }