]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/property-nested-override.ly
Merge branch 'stable'
[lilypond.git] / input / regression / property-nested-override.ly
1 \version "2.12.0"
2 \header {
3   texidoc = "Nested properties may be overridden using Scheme list
4 syntax.  This test performs two property overrides: the first
5 measure uses standard @code{\\override} syntax; the second uses a
6 list.
7 "
8 }
9
10 \relative c' {
11   \once \override TextSpanner #'bound-details #'left #'text = #"foo"
12   c4\startTextSpan
13   \once \override Tie #'details #'note-head-gap = #1
14   c4 ~ c c\stopTextSpan
15   
16   \once \override TextSpanner #'(bound-details left text) = #"foo"
17   c4\startTextSpan
18   \once \override Tie #'(details note-head-gap) = #1
19   c4 ~ c c\stopTextSpan
20 }