From e7f6416d7f3379d5b64f9e783cd519acc5482546 Mon Sep 17 00:00:00 2001 From: Joe Neeman Date: Wed, 9 Jan 2008 05:37:08 +0100 Subject: [PATCH] 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.5