]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/metronome-mark-loose-column.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / metronome-mark-loose-column.ly
1 \version "2.19.21"
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 {
13       c'8 c c c
14       \tempo 4 = 60
15       c2
16     }
17     \new Staff \relative {
18       c'2 \clef bass c2
19     }
20   >>
21   \layout {
22     \context {
23       \Score
24       \override NonMusicalPaperColumn.stencil = #ly:paper-column::print
25     }
26   }
27 }