]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collision-merge-differently-dotted.ly
* lily/note-collision.cc (check_meshing_chords): Do not remove
[lilypond.git] / input / regression / collision-merge-differently-dotted.ly
1 \version "2.1.7"
2 \header {
3     
4     texidoc = "If NoteCollision has merge-differently-dotted = \\#t note
5 heads that have differing dot counts may be merged anyway.  Dots
6 should not disappear when merging similar note heads."
7     
8 }
9
10 \paper { raggedright= ##t }
11         
12 \score {
13     \context Staff \notes\relative c'' <<
14         {
15             g8[ g8]
16             \property Staff.NoteCollision
17             \override #'merge-differently-dotted = ##t
18             g8[ g8]
19             g4. r8 g8. g16
20             g8 g4 r8 g4
21         }
22         \\
23         {
24             g8.[ f16]
25             g8.[ f16]
26             g8 g4 r8 g4
27             g4. r8 g8. g16
28         }
29     >>
30 }
31