From cde37dd71b880d581622cea619fd078a63aa12d9 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Sat, 26 Apr 2008 10:07:32 +1000 Subject: [PATCH] Add a regression test for cross-staff fingerings. --- input/regression/fingering-cross-staff.ly | 25 +++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 input/regression/fingering-cross-staff.ly diff --git a/input/regression/fingering-cross-staff.ly b/input/regression/fingering-cross-staff.ly new file mode 100644 index 0000000000..1fa30c1f21 --- /dev/null +++ b/input/regression/fingering-cross-staff.ly @@ -0,0 +1,25 @@ +\version "2.11.44" + +\header { + texidoc = "Fingerings work correctly with cross-staff beams." +} + +music = \relative c { + \change Staff = "down" + c8 e g-1 + \change Staff = "up" + e'-2 g-3 c-5 + \change Staff = "down" + e,-3[ g,-1] +} + +\score { + \new PianoStaff << + \new Staff="up" \new Voice { + \stemUp \music } + \new Staff="down" \new Voice { + \clef bass \stemDown + \override Fingering #'direction = #down + \transpose c c, \music } + >> +} \ No newline at end of file -- 2.39.2