]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/chord-dots.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / chord-dots.ly
index 56de7a59c6507305a35d1753d5174d71ae349d5f..957788d4bc61edf3df9ed7e3985ee7f6d607a449 100644 (file)
@@ -1,21 +1,17 @@
-\version "2.17.13"
+\version "2.17.16"
 
 \header {
   texidoc =
-"Property @code{chord-dots}: If set, remove dots which the
-@code{DotColumn} algorithm would vertically position too far away from
-note heads."
+"The column of dots on a chord is limited to the height
+of the chord plus @code{chord-dots-limit} staff-positions."
 }
 
 \layout{ ragged-right = ##t }
 
-
-\relative c'' {
-  \override Score.DotColumn.chord-dots = ##f
-  << { <d e f g a>4. } \\
-     { <a, b c d e>4. } >>
-
-  \override Score.DotColumn.chord-dots = ##t
-  << { <d' e f g a>4. } \\
-     { <a, b c d e>4. } >>
+\new Staff \transpose c c' {
+  \override Staff.DotColumn.chord-dots-limit = #1
+  <<
+    { <g a b c' d' e'>4. r8 <c' d' e' f' g' a' b'>4. r8 } \\
+    { f4.. r16 <c d e f g a b>4.. r16}
+  >>
 }