X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fremove-empty-staves-auto-knee.ly;fp=input%2Fregression%2Fremove-empty-staves-auto-knee.ly;h=2b01d274340b3b035216475242737e410aeaaf15;hb=e90f0536f9be39ada0bef0aeb0d275dec3b2fb5b;hp=0000000000000000000000000000000000000000;hpb=a8c9e8a7ca320ab0df5fd32e717fd62cd7635ce6;p=lilypond.git diff --git a/input/regression/remove-empty-staves-auto-knee.ly b/input/regression/remove-empty-staves-auto-knee.ly new file mode 100644 index 0000000000..2b01d27434 --- /dev/null +++ b/input/regression/remove-empty-staves-auto-knee.ly @@ -0,0 +1,48 @@ +\version "2.14.0" + +\header { + texidoc = " +RemoveEmptyStaves should keep the pre-existing value of +@code{auto-knee-gap}. In this case, the cross-staff beam +should be between the two staves. +" +} + +staffMusic = \new StaffGroup { + << + \new Staff = "rh" { + \relative c' { + c1 \break + c1 \break + c8[ c c c + \change Staff = "lh" + g, g g g] + \change Staff = "rh" + c1 + } + } + \new Staff = "lh" { + \relative c { + \clef bass + c1 + R1 + R1 + R1 + } + } + >> +} + +\score { + \staffMusic +} + +\layout { + ragged-right = ##t + \context { + \Staff + \override Beam #'auto-knee-gap = #4.5 + \RemoveEmptyStaves + } +} +