]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tuplet-bracket-outside-staff-priority.ly
Doc: CSS: Add a maximum width for the sidebar in the manuals
[lilypond.git] / input / regression / tuplet-bracket-outside-staff-priority.ly
index 2c3115a9e2436f30abb5b1db3d5d0335d3ab8385..15d5220612822504a131c62f671faa5ba324cc48 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.15.24"
+\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 }
 }