X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ftuplet-bracket-outside-staff-priority.ly;h=15d5220612822504a131c62f671faa5ba324cc48;hb=8b35a2c2364736bb2ea827b963b05424e366e410;hp=46204a8efec10ceae43ab0b63a575c3980d41648;hpb=5b1f3adfe5e3561eaa0f9440e0697054084b7107;p=lilypond.git diff --git a/input/regression/tuplet-bracket-outside-staff-priority.ly b/input/regression/tuplet-bracket-outside-staff-priority.ly index 46204a8efe..15d5220612 100644 --- a/input/regression/tuplet-bracket-outside-staff-priority.ly +++ b/input/regression/tuplet-bracket-outside-staff-priority.ly @@ -1,4 +1,4 @@ -\version "2.16.0" +\version "2.19.21" \header { texidoc = "Tuplet brackets' outside staff priority can be @@ -6,17 +6,17 @@ set. Brackets, by default, carry their numbers with them." } -\relative c'' { - \override TupletBracket #'avoid-scripts = ##f +\relative { + \override TupletBracket.avoid-scripts = ##f % Plain old tuplet - \times 2/3 { a8 r a } + \tuplet 3/2 { a'8 r a } % With nothing set, collisions abound both horizontally and % vertically - \times 2/3 { a8^\espressivo r a^\espressivo } + \tuplet 3/2 { a8^\espressivo r a^\espressivo } % Setting the staff priority prevents collisions - \override TupletBracket #'outside-staff-priority = #1 - \times 2/3 { a8^\espressivo r a^\espressivo } + \override TupletBracket.outside-staff-priority = #1 + \tuplet 3/2 { a8^\espressivo r a^\espressivo } % Note that, with the outside-staff-priority set, this bracket % should be at the same vertical level as the first one - \times 2/3 { a8 r a } + \tuplet 3/2 { a8 r a } }