X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fvolta-multi-staff.ly;h=389b6f78c341281b342be5ea670f6ae3ec53cdc0;hb=b59c8c2a2c18103cac89dab3e7f82fd17ac36d00;hp=5948b134e2076a0479a3cc14c0e9bfd17168e5ff;hpb=eba82770802a246bca4afab7eab1f78e84785214;p=lilypond.git diff --git a/input/regression/volta-multi-staff.ly b/input/regression/volta-multi-staff.ly index 5948b134e2..389b6f78c3 100644 --- a/input/regression/volta-multi-staff.ly +++ b/input/regression/volta-multi-staff.ly @@ -1,28 +1,22 @@ \header { - - texidoc = "By setting @code{voltaOnThisStaff}, repeats can be put - on more staves in a score." - + texidoc = "By default, the volta brackets appear only in the topmost staff." } -\version "2.1.26" +\layout { ragged-right = ##t } +\version "2.11.51" -vmus = \notes { \repeat volta 2 c1 \alternative { d e } } +vmus = { \repeat volta 2 c1 \alternative { d e } } + +\relative c'' << + \new StaffGroup << + \new Staff \vmus + \new Staff \vmus + >> + \new StaffGroup << + \new Staff \vmus + \new Staff \vmus + >> +>> -\score { - \notes \relative c'' << - \new StaffGroup << - \context Staff \vmus - \new Staff \vmus - >> - \new StaffGroup << - \new Staff << - \set Staff.voltaOnThisStaff = ##t - \vmus >> - \new Staff \vmus - >> - >> - \paper { raggedright = ##t } -}