X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fvolta-multi-staff.ly;h=1b1f395baae0750d4d9fabfb0ce500b32443de60;hb=e7f6416d7f3379d5b64f9e783cd519acc5482546;hp=4fc24b45950fde227d43ddc30a25d1a85d517608;hpb=70048d99398924e7ca0eb481925145ec243700c5;p=lilypond.git diff --git a/input/regression/volta-multi-staff.ly b/input/regression/volta-multi-staff.ly index 4fc24b4595..1b1f395baa 100644 --- a/input/regression/volta-multi-staff.ly +++ b/input/regression/volta-multi-staff.ly @@ -1,28 +1,22 @@ -#(ly:set-option 'old-relative) \header { - - texidoc = "By setting @code{voltaOnThisStaff}, repeats can be put on more staffs in a score." - + texidoc = "By default, the volta brackets appear only in the topmost staff." } -\version "1.9.4" +\layout { ragged-right = ##t } +\version "2.10.0" -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 << - \property Staff.voltaOnThisStaff = ##t - \vmus >> - \new Staff \vmus - >> - >> - \paper { raggedright = ##t } -}