]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/auto-staff-switch.ly
release: 1.1.67
[lilypond.git] / input / bugs / auto-staff-switch.ly
1
2 \score  {
3 \notes {
4         \context AutoSwitchGrandStaff \relative c' {
5         c8 d b a' a, f' g,4 ~ g
6
7         }
8 }
9
10 \paper {
11 \translator { \ScoreContext
12 \accepts AutoSwitchGrandStaff;
13 }
14 \translator{
15         \type "Engraver_group_engraver";
16         \name AutoSwitchGrandStaff;
17         \consists "Span_bar_engraver";
18         \consists "Vertical_align_engraver";
19         \consists "Piano_bar_engraver";
20         \consistsend "Axis_group_engraver";
21         minVerticalAlign = 2.*\staffheight;
22         maxVerticalAlign = 2.*\staffheight;     
23         switcherName = "Voice";
24         acceptorName = "Thread";
25         staffContextName = "Staff";
26
27         \accepts "AutoSwitchContext";
28         \accepts "Staff";
29 }
30 \translator {
31         \type "Engraver_group_engraver";
32         \name "AutoSwitchContext";
33         \consists "Staff_switching_translator";
34 }
35
36 }}
37
38 \version "1.1.66";