X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ftuplet-bracket-cross-staff.ly;h=7f864fa85d34c54897e44321198c6d24f79b2973;hb=13da8b27aabc5d5a752d00ed1e2b99ad20f0f264;hp=58c43219858fa926607d06bb9cdbfedf55380f59;hpb=18b1e6e9649bddeaccdd4b4daa74cda0324b8fb3;p=lilypond.git diff --git a/input/regression/tuplet-bracket-cross-staff.ly b/input/regression/tuplet-bracket-cross-staff.ly index 58c4321985..7f864fa85d 100644 --- a/input/regression/tuplet-bracket-cross-staff.ly +++ b/input/regression/tuplet-bracket-cross-staff.ly @@ -1,21 +1,35 @@ -\version "2.11.16" -\paper { ragged-right = ##t } +\version "2.17.6" + +\paper { + ragged-right = ##t +} + +\header { + texidoc = "Cross-staff tuplets are drawn correctly, +even across multiple staves." +} + \layout { \context { \Score - \override TupletBracket #'bracket-visibility = ##t + \override TupletBracket.bracket-visibility = ##t } } voice = { - \times 2/3 { b8 \change Staff=RH c' d' } - \times 2/3 { d' c' \change Staff=LH b } + \times 2/3 { b8 \change Staff=I c' d' } + \times 2/3 { d' c' \change Staff=II b } + \times 2/3 { \change Staff=III c, + \change Staff=II b + \change Staff=I c' } + \times 2/3 { c'[ \change Staff=II b] c } } \score { \new PianoStaff << - \new Staff = "RH" { s4 s4 s4 } - \new Staff = "LH" { \clef bass \voice } + \new Staff = "I" { s1 } + \new Staff = "II" { \clef bass \voice } + \new Staff = "III" { \clef bass s1 } >> -} \ No newline at end of file +}