]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/override-nest.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / override-nest.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "Sublist of grob property lists may be also tuned.  In the
5 next example, the @code{beamed-lengths} property of the @code{Stem}
6 grob is tweaked."
7 }
8
9 \relative {
10   \override Stem.details.beamed-lengths = #'(6 10 8)
11   c'8[ c] c16[ c] c32[ c]
12   \revert Stem.details.beamed-lengths
13   c8[ c] c16[ c] c32[ c]
14 }