From 5948a3f34a9345c7035f30714a8a2d937f520aa4 Mon Sep 17 00:00:00 2001 From: Valentin Villenave Date: Sun, 13 Jan 2008 19:04:36 +0100 Subject: [PATCH] seventh patch from Joe: add regression test for mixed clefs and octavations --- input/regression/clef-ottava.ly | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 input/regression/clef-ottava.ly diff --git a/input/regression/clef-ottava.ly b/input/regression/clef-ottava.ly new file mode 100644 index 0000000000..d01e6c912e --- /dev/null +++ b/input/regression/clef-ottava.ly @@ -0,0 +1,26 @@ + +\header +{ + texidoc = "Ottava brackets and clefs both modify Staff.middleCPosition, +but they don't confuse one another." +} + +\version "2.11.36" + +\layout { ragged-right = ##t} + +\relative c'' { + \clef "alto" + a b c a + #(set-octavation 1) + a b c a + \clef "bass" + a b c a + #(set-octavation 2) + a b c a + \clef "treble" + #(set-octavation -1) + a b c a +} + + -- 2.39.2