X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fvolta-multi-staff.ly;h=e9100b0c3a71ae4c6118ce761a9bbbf40b3f0184;hb=60f4e610f5ffb3d5d1201fd5fa258c2b64ac8010;hp=52d5fbf691a0f451d35aee26d4ffc4c2de1338e6;hpb=7bb33a8e7df9d526bff3cb525045e218c9759e88;p=lilypond.git diff --git a/input/regression/volta-multi-staff.ly b/input/regression/volta-multi-staff.ly index 52d5fbf691..e9100b0c3a 100644 --- a/input/regression/volta-multi-staff.ly +++ b/input/regression/volta-multi-staff.ly @@ -1,27 +1,22 @@ \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 "2.1.7" +\layout { ragged-right = ##t } +\version "2.14.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 } -}