]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/override-nest-scheme.ly
Imported Upstream version 2.19.45
[lilypond.git] / input / regression / override-nest-scheme.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "A sublist of grob property lists may be overridden within a callback.
5   This test uses a custom stencil callback which changes the Y coordinate
6   of the right bound of the glissando spanner."
7 }
8
9 \relative {
10   \override Glissando.after-line-breaking =
11     #(lambda (grob)
12        (ly:grob-set-nested-property! grob '(bound-details right Y) 3))
13   c'1 \glissando
14   d1
15 }
16