]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/page-spacing-staff-group-nested.ly
Fix 1519.
[lilypond.git] / input / regression / page-spacing-staff-group-nested.ly
1 \version "2.13.52"
2
3 \header {
4   texidoc = "StaffGroups can be nested, in which case the inner StaffGroup wins."
5 }
6
7 \score {
8  <<
9    \new StaffGroup <<
10      \new Staff {
11        c'1
12      }
13      \new StaffGroup \with {
14        \override StaffGrouper #'staffgroup-staff-spacing #'basic-distance = #20
15      } <<
16        \new Staff {
17          c'1
18        }
19        \new Staff {
20          c'1
21        }
22      >>
23      \new Staff {
24        c'1
25      }
26    >>
27  >>
28 }
29