]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/using-the-whiteout-property.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / Documentation / snippets / using-the-whiteout-property.ly
index 1e520ddfe12a0cb4f01c6bd474cdc0501b160614..77bc141d219a36d1ae2f934925f39670574606e9 100644 (file)
@@ -4,8 +4,8 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.19.22
-\version "2.19.22"
+%% Note: this file works from version 2.19.32
+\version "2.19.32"
 
 \header {
   lsrtags = "editorial-annotations, expressive-marks"
@@ -20,7 +20,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
@@ -35,7 +35,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
 }