]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/text-spanner-override-order.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / text-spanner-override-order.ly
1 \header {
2
3   texidoc = "The order of setting nested properties does not influence
4   text spanner layout."
5
6 }
7
8 \version "2.19.21"
9
10 sample = \relative {
11   c''2\startTextSpan c2 \break
12   c2 c2 \stopTextSpan
13 }
14
15 << {
16   \override TextSpanner.bound-details.left-broken #' text =
17     \markup { \large "BROKEN" }
18   \override TextSpanner.bound-details.left.text =
19     \markup { "text" }
20   \sample
21 } \\ {
22   \override TextSpanner.bound-details.left.text =
23     \markup { "text" }
24   \override TextSpanner.bound-details.left-broken #' text =
25     \markup { \large "BROKEN" }
26   \sample
27 } >>