]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/using-the-whiteout-property.ly
Issue 4504/4 edits to tests, docs, and changes.tely
[lilypond.git] / Documentation / snippets / new / using-the-whiteout-property.ly
index 8289bab8b89779ca72e22431d265c88d55daedd5..07c2b7288b256626ff8e0e1f7a5456679e46be71 100644 (file)
@@ -1,4 +1,4 @@
-\version "2.19.22"
+\version "2.19.32"
 
 \header {
   lsrtags = "editorial-annotations, expressive-marks"
@@ -13,7 +13,7 @@ background.
 
 In this example the collision of the tie with the time signature is
 improved by masking out the part of the tie that crosses the time
-signature by setting the @code{whiteout-box} property of
+signature by setting the @code{whiteout} property of
 @code{TimeSignature}. To do this @code{TimeSignature} is moved to a
 layer above @code{Tie}, which is left in the default layer of 1, and
 @code{StaffSymbol} is moved to a layer above @code{TimeSignature} so it
@@ -27,7 +27,7 @@ is not masked.
   \override Score.StaffSymbol.layer = #4
   \override Staff.TimeSignature.layer = #3
   b'2 b'~
-  \once \override Staff.TimeSignature.whiteout-box = ##t
+  \once \override Staff.TimeSignature.whiteout = ##t
   \time 3/4
   b' r4
 }