]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/metronome-mark-loose-column.ly
Merge branch 'master' of git://git.savannah.gnu.org/lilypond.git
[lilypond.git] / input / regression / metronome-mark-loose-column.ly
1 \version "2.15.6"
2
3 \header {
4   texidoc = "Metronome marks aligned on notes do not interfere with
5 the positioning of loose columns in other staves.  Here the loose
6 column supporting the clef is correctly placed immediately before
7 the second note in the lower staff."
8 }
9
10 \score {
11   <<
12     \new Staff \relative c' {
13       c8 c c c
14       \tempo 4 = 60
15       c2
16     }
17     \new Staff \relative c' {
18       c2 \clef bass c2
19     }
20   >>
21   \layout {
22     \context {
23       \Score
24       \override NonMusicalPaperColumn #'stencil = #ly:paper-column::print
25     }
26   }
27 }