]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/metronome-multimeasure-rest-no-segfault.ly
Doc-es: various updates.
[lilypond.git] / input / regression / metronome-multimeasure-rest-no-segfault.ly
1 \version "2.16.0"
2 \header {
3   texidoc = "
4 A metronome marking can be added to a multimeasure rest whose
5 engraver was moved to the Staff, without segfaulting.
6 "
7 }
8
9
10 \score {
11   \new Staff {
12     \tempo 4=150
13     R1 |
14   }
15   \layout {
16     \context {
17       \Score
18       \remove "Metronome_mark_engraver"
19       \remove "Staff_collecting_engraver"
20     }
21     \context {
22       \Staff
23       \consists "Metronome_mark_engraver"
24     }
25   }
26 }
27