]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/metronome-mark-loose-column.ly
resolve merge
[lilypond.git] / input / regression / metronome-mark-loose-column.ly
diff --git a/input/regression/metronome-mark-loose-column.ly b/input/regression/metronome-mark-loose-column.ly
new file mode 100644 (file)
index 0000000..799b14e
--- /dev/null
@@ -0,0 +1,27 @@
+\version "2.14.2"
+
+\header {
+  texidoc = "Metronome marks aligned on notes do not interfere with
+the positioning of loose columns in other staves.  Here the loose
+column supporting the clef is correctly placed immediately before
+the second note in the lower staff."
+}
+
+\score {
+  <<
+    \new Staff \relative c' {
+      c8 c c c
+      \tempo 4 = 60
+      c2
+    }
+    \new Staff \relative c' {
+      c2 \clef bass c2
+    }
+  >>
+  \layout {
+    \context {
+      \Score
+      \override NonMusicalPaperColumn #'stencil = #ly:paper-column::print
+    }
+  }
+}