]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/metronome-marking-align-order.ly
resolve merge
[lilypond.git] / input / regression / metronome-marking-align-order.ly
diff --git a/input/regression/metronome-marking-align-order.ly b/input/regression/metronome-marking-align-order.ly
new file mode 100644 (file)
index 0000000..3c5f596
--- /dev/null
@@ -0,0 +1,28 @@
+\version "2.14.0"
+
+\header {
+  texidoc = "Metronome marks respect symbol order in
+@code{break-align-symbols}.
+
+In this example, the default is changed to
+@code{'(time-signature key-signature)}: since @code{key-signature}
+is second in the list, the mark should only be aligned with the key
+signature if there is no time signature present, as in the second
+measure.
+"  
+}
+
+\paper {
+  ragged-right = ##t
+}
+
+\relative c' {
+  \override Staff.KeySignature #'break-align-anchor-alignment = #LEFT
+  \override Score.MetronomeMark #'break-align-symbols = #'(time-signature key-signature)
+  \key c \minor
+  \tempo "Time"
+  c1 
+  \key as \major
+  \tempo "Key"
+  c1
+}