X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fcollision-dots-move.ly;h=71fbdabb608fced5c564a9239365e0bd8134bff7;hb=13da351ae100d476532c18241bbe91862fd287ed;hp=4a6719ffacc61aeecfa77d71425dd937bfa01b4c;hpb=51159f8679de00e6cd526ca2a16e1ea4d4294f81;p=lilypond.git diff --git a/input/regression/collision-dots-move.ly b/input/regression/collision-dots-move.ly index 4a6719ffac..71fbdabb60 100644 --- a/input/regression/collision-dots-move.ly +++ b/input/regression/collision-dots-move.ly @@ -1,17 +1,25 @@ -\version "2.3.4" +\version "2.14.0" \header { - texidoc = "If collision resolution finds dotted note head must - remain on left hand side, move dots to the right." + texidoc = "If dotted note heads must remain on the left side, +collision resolution moves the dots to the right." } -\paper { raggedright = ##t } +\layout { ragged-right = ##t } -\score { - \relative c { - \key d \minor - \clef bass - << 4 \\ { g'8. bes16} >> - } +\relative c { + \clef bass + \override Staff.NoteCollision #'prefer-dotted-right = ##t + s1*0^"prefer-dotted-right = #t" + << 4 \\ { c8. d16 } >> + << 4 \\ { d8. d16 } >> + << 4 \\ { f'8. d16 } >> + << 4 \\ { g'8. d16 } >> + \override Staff.NoteCollision #'prefer-dotted-right = ##f + s1*0^"prefer-dotted-right = #f" + << 4 \\ { c8. d16 } >> + << 4 \\ { d8. d16 } >> + << 4 \\ { f'8. d16 } >> + << 4 \\ { g'8. d16 } >> }